import React from 'react'; import styled from '@emotion/styled'; import { useTranslation } from 'react-i18next'; import { default as MuiTabs } from '../../muiComponents/Tabs'; import Tab from '../../muiComponents/Tab'; import { Theme } from '../../design-tokens/theme'; interface Props { onChange: (event, newValue) => void; tabPosition: number; } const DetailContainerTabs: React.FC = ({ tabPosition, onChange }) => { const { t } = useTranslation(); return ( ); }; export default DetailContainerTabs; const Tabs = styled(MuiTabs)<{ theme?: Theme }>({ marginBottom: 16, });