mernmail-website/components/Icon.jsx

25 lines
657 B
JavaScript

const Icon = (props) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={75.59}
height={87.284}
viewBox="0 0 20 23.094"
{...props}
>
<path
d="m20 17.32-9.999 5.774-10-5.772L0 5.775 9.999 0l10 5.772Z"
style={{
fill: "#ff7f00",
strokeWidth: 0.55943
}}
/>
<path
d="M5.695 6.784a1.386 1.394 0 0 0-1.382 1.341l5.601 2.477 5.622-2.486a1.386 1.394 0 0 0-1.384-1.332Zm9.843 1.977-5.624 2.6L4.31 8.77v5.741a1.386 1.394 0 0 0 1.386 1.395h8.457a1.386 1.394 0 0 0 1.386-1.395z"
style={{
fill: "#fff",
strokeWidth: 4.37786
}}
/>
</svg>
);
export default Icon;