22 lines
558 B
TypeScript
22 lines
558 B
TypeScript
const VideoIcon = () => {
|
|
return (
|
|
<svg
|
|
width="25"
|
|
height="24"
|
|
viewBox="0 0 25 24"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M19.685 11.7856C19.8468 11.8827 19.8468 12.1173 19.685 12.2144L7.62863 19.4482C7.46199 19.5482 7.25 19.4281 7.25 19.2338L7.25 4.76619C7.25 4.57187 7.46199 4.45184 7.62862 4.55182L19.685 11.7856Z"
|
|
stroke="#00BED7"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default VideoIcon;
|