UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 984 B
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconCamcorder = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16.5 13.4434L21.5 16.3301V7.66987L16.5 10.5566V6C16.5 5.72386 16.2761 5.5 16 5.5H4C3.72386 5.5 3.5 5.72386 3.5 6V18C3.5 18.2761 3.72386 18.5 4 18.5H16C16.2761 18.5 16.5 18.2761 16.5 18V13.4434ZM18 6C18 4.89543 17.1046 4 16 4H4C2.89543 4 2 4.89543 2 6V18C2 19.1046 2.89543 20 4 20H16C17.1046 20 18 19.1046 18 18V16.0415L20.75 17.6292C21.75 18.2065 23 17.4848 23 16.3301V7.66987C23 6.51517 21.75 5.79348 20.75 6.37084L18 7.95855V6Z" }) })); }; IconCamcorder.iconName = "camcorder"; export default IconCamcorder;