10 lines
340 B
TypeScript
10 lines
340 B
TypeScript
import { memo, SVGProps } from 'react';
|
|
|
|
const VectorIcon = (props: SVGProps<SVGSVGElement>) => (
|
|
<svg preserveAspectRatio='none' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg' {...props}>
|
|
<path d='M12 0.5L6 6.5L0 0.5H12Z' fill='#1D2129' />
|
|
</svg>
|
|
);
|
|
const Memo = memo(VectorIcon);
|
|
export { Memo as VectorIcon };
|