UNPKG

@sanity/icons

Version:
32 lines (31 loc) 800 B
import { forwardRef } from "react"; import { jsx, jsxs } from "react/jsx-runtime"; /** * @public */ const VideoIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsxs("svg", { "data-sanity-icon": "video", width: "1em", height: "1em", viewBox: "0 0 25 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, ref, children: [/* @__PURE__ */ jsx("path", { d: "M19.5 18.5H5.5V6.5H19.5V18.5Z", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }), /* @__PURE__ */ jsx("path", { d: "M11.5 14.5V10.5L14.5 12.5L11.5 14.5Z", fill: "currentColor", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" })] }); }); export { VideoIcon, VideoIcon as default }; //# sourceMappingURL=Video.js.map