UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 2.1 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconChapterSet = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("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", { d: "M14.75 3C14.3358 3 14 3.33579 14 3.75C14 4.16421 14.3358 4.5 14.75 4.5H20.25C20.6642 4.5 21 4.16421 21 3.75C21 3.33579 20.6642 3 20.25 3H14.75Z" }), _jsx("path", { d: "M14.75 8.5C14.3358 8.5 14 8.83579 14 9.25C14 9.66421 14.3358 10 14.75 10H20.25C20.6642 10 21 9.66421 21 9.25C21 8.83579 20.6642 8.5 20.25 8.5H14.75Z" }), _jsx("path", { d: "M3 14.75C3 14.3358 3.33579 14 3.75 14H12.0218C11.7253 14.4632 11.4858 14.9665 11.3135 15.5H3.75C3.33579 15.5 3 15.1642 3 14.75Z" }), _jsx("path", { d: "M11.8448 20.7069C11.6293 20.3276 11.4509 19.9246 11.3144 19.5027C11.2932 19.5009 11.2717 19.5 11.25 19.5H3.75C3.33579 19.5 3 19.8358 3 20.25C3 20.6642 3.33579 21 3.75 21H11.25C11.4923 21 11.7077 20.8851 11.8448 20.7069Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 5C3 3.89543 3.89543 3 5 3H8C9.10457 3 10 3.89543 10 5V8C10 9.10457 9.10457 10 8 10H5C3.89543 10 3 9.10457 3 8V5ZM5 4.5H8C8.27614 4.5 8.5 4.72386 8.5 5V8C8.5 8.27614 8.27614 8.5 8 8.5H5C4.72386 8.5 4.5 8.27614 4.5 8V5C4.5 4.72386 4.72386 4.5 5 4.5Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.5 23C20.5376 23 23 20.5376 23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23ZM19.5 15C19.7762 15 20 15.2239 20 15.5V18.3284C20 18.6046 19.7762 18.8284 19.5 18.8284C19.2239 18.8284 19 18.6046 19 18.3284V16.7071L15.8534 19.8537C15.6582 20.049 15.3416 20.049 15.1463 19.8537C14.9511 19.6584 14.9511 19.3419 15.1463 19.1466L18.2929 16H16.6716C16.3955 16 16.1716 15.7761 16.1716 15.5C16.1716 15.2239 16.3955 15 16.6716 15H19.5Z" })] })); }; IconChapterSet.iconName = "chapter-set"; export default IconChapterSet;