19 lines
362 B
TypeScript
19 lines
362 B
TypeScript
function FlashIcon() {
|
|
return (
|
|
<svg
|
|
width={20}
|
|
height={20}
|
|
viewBox='0 0 20 20'
|
|
fill='currentColor'
|
|
xmlns='http://www.w3.org/2000/svg'
|
|
>
|
|
<path
|
|
d='M8.71094 3H13.62L10.62 7.9H14.7109L8.16548 17L9.52912 10.35H5.71094L8.71094 3Z'
|
|
fill='currentColor'
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default FlashIcon;
|