/// import { SvgIconProps } from '@mui/material/SvgIcon'; interface Props extends SvgIconProps { iconColor?: string; } export default function ShieldIcon({ iconColor, className, onClick, }: Props): JSX.Element; export {};