import { styled, Theme } from '@mui/material/styles'; import { SxProps } from '@mui/system'; export type RootSvgProps

= Omit, 'ref'> & { sx?: SxProps; ref?: React.Ref; } & P; const Svg = styled('svg')({ verticalAlign: 'bottom', }); export default Svg;