import { useTheme } from '@mui/material/styles'; import type { SVGProps } from 'react'; export const InsuraceLogo = (props: SVGProps) => { const theme = useTheme(); const insurColor = theme.palette.mode === 'light' ? '#1C4332' : theme.palette.common.white; return ( ); };