mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-13 07:45:07 +00:00
14 lines
326 B
TypeScript
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;
|