mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-17 17:55:42 +00:00
18 lines
435 B
TypeScript
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>
|
|
);
|
|
}
|