@uppy/screen-capture
Version:
Uppy plugin that captures video from display or application.
21 lines • 659 B
JavaScript
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { h } from 'preact';
export default function ScreenRecIcon() {
return h("svg", {
className: "uppy-DashboardTab-iconScreenRec",
"aria-hidden": "true",
focusable: "false",
width: "32",
height: "32",
viewBox: "0 0 32 32"
}, h("g", {
fill: "currentcolor",
fillRule: "evenodd"
}, h("path", {
d: "M24.182 9H7.818C6.81 9 6 9.742 6 10.667v10c0 .916.81 1.666 1.818 1.666h4.546V24h7.272v-1.667h4.546c1 0 1.809-.75 1.809-1.666l.009-10C26 9.742 25.182 9 24.182 9zM24 21H8V11h16v10z"
}), h("circle", {
cx: "16",
cy: "16",
r: "2"
})));
}