import { forwardRef } from 'react'; // @mui import { useTheme } from '@mui/material/styles'; import Box from '@mui/material/Box'; // import { StyledLabel } from './styles'; import { LabelProps } from './types'; // ---------------------------------------------------------------------- const Label = forwardRef( ({ children, color = 'default', variant = 'soft', startIcon, endIcon, sx, ...other }, ref) => { const theme = useTheme(); const iconStyle = { width: 16, height: 16, '& svg, img': { width: 1, height: 1, objectFit: 'cover' }, }; return ( {startIcon && {startIcon} } {children} {endIcon && {endIcon} } ); } ); export default Label;