react-text-editor-kit
Version:
React Text Editor Kit is a customizable rich text editor component for React applications. It provides a flexible and easy-to-use interface for users to create and edit content with various formatting options. And also easy to integrate in react applicati
24 lines (22 loc) • 503 B
JSX
import React from "react";
export default function VideoIcon() {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="48"
height="48"
viewBox="0 0 48 48"
>
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="4"
>
<path d="M11 7h26v34H11zm-7 4h7v26H4zm33 0h7v26h-7z" />
<path d="m22 20l6 4l-6 4z" />
</g>
</svg>
);
}