2024-02-15 21:49:12 -05:00

14 lines
326 B
TypeScript

import { styled, Theme } from '@mui/material/styles';
import { SxProps } from '@mui/system';
export type RootSvgProps<P = unknown> = Omit<React.SVGProps<SVGSVGElement>, 'ref'> & {
sx?: SxProps<Theme>;
ref?: React.Ref<SVGSVGElement>;
} & P;
const Svg = styled('svg')({
verticalAlign: 'bottom',
});
export default Svg;