import React, { FC } from 'react' import { Tabs as MuiTabs } from '@mui/material' import { type ButtonRef } from 'types/button' interface TabsProps { indicatorColor?: 'primary' | 'secondary', orientation?: 'horizontal' | 'vertical', variant?: 'fullWidth' | 'scrollable' | 'standard', selected?: number | string, children?: React.ReactNode, className?: string } export const Tabs: FC = React.forwardRef((props, ref: ButtonRef) => { // == Props ================================ const { children, selected = 0, indicatorColor = 'secondary', orientation = 'horizontal', variant = 'standard', className = '' } = props // == Hooks ================================ // == Functions ============================ // == Actions ============================== // == Template ============================= return ( {children} ) })