Files
aso/frontend/client-portal/src/components/SvgIconStyle.tsx
Linksehat Staging Server 70fc1579e7 update
2024-07-12 08:41:18 +07:00

25 lines
551 B
TypeScript
Executable File

import { Box, BoxProps } from '@mui/material';
// ----------------------------------------------------------------------
interface Props extends BoxProps {
src: string;
}
export default function SvgIconStyle({ src, sx }: Props) {
return (
<Box
component="span"
sx={{
width: 24,
height: 24,
display: 'inline-block',
bgcolor: 'currentColor',
mask: `url(${src}) no-repeat center / contain`,
WebkitMask: `url(${src}) no-repeat center / contain`,
...sx,
}}
/>
);
}