domain-watchdog/assets/components/SitemarkIcon.tsx
2024-07-22 14:45:21 +02:00

18 lines
435 B
TypeScript

import * as React from 'react';
import SvgIcon from '@mui/material/SvgIcon';
export default function SitemarkIcon() {
return (
<SvgIcon sx={{height: 21, width: 100, mr: 2}}>
<svg
width={86}
height={19}
viewBox="0 0 86 19"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
</svg>
</SvgIcon>
);
}