22 lines
442 B
TypeScript
22 lines
442 B
TypeScript
export function PulseMark() {
|
|||
|
|
return (
|
||
|
|
<svg
|
||
|
|
width="30"
|
||
|
|
height="16"
|
||
|
|
viewBox="0 0 60 24"
|
||
|
|
fill="none"
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
aria-hidden="true"
|
||
|
|
className="text-accent"
|
||
|
|
>
|
||
|
|
<path
|
||
|
|
d="M0 12H11L15 5L20 19L24 12H33L37 8L41 12H60"
|
||
|
|
stroke="currentColor"
|
||
|
|
strokeWidth="2.5"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
/>
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
}
|