@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.91 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconSheet = (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: "M7.999 6.75C7.44727 6.75 7 7.19827 7 7.75C7 8.30173 7.44727 8.75 7.999 8.75C8.55073 8.75 8.998 8.30173 8.998 7.75C8.998 7.19827 8.55073 6.75 7.999 6.75Z" }), _jsx("path", { d: "M11.25 7C10.8358 7 10.5 7.33579 10.5 7.75C10.5 8.16421 10.8358 8.5 11.25 8.5H16.25C16.6642 8.5 17 8.16421 17 7.75C17 7.33579 16.6642 7 16.25 7H11.25Z" }), _jsx("path", { d: "M7.999 10.75C7.44727 10.75 7 11.1983 7 11.75C7 12.3017 7.44727 12.75 7.999 12.75C8.55073 12.75 8.998 12.3017 8.998 11.75C8.998 11.1983 8.55073 10.75 7.999 10.75Z" }), _jsx("path", { d: "M11.25 11C10.8358 11 10.5 11.3358 10.5 11.75C10.5 12.1642 10.8358 12.5 11.25 12.5H16.25C16.6642 12.5 17 12.1642 17 11.75C17 11.3358 16.6642 11 16.25 11H11.25Z" }), _jsx("path", { d: "M7.999 14.75C7.44727 14.75 7 15.1983 7 15.75C7 16.3017 7.44727 16.75 7.999 16.75C8.55073 16.75 8.998 16.3017 8.998 15.75C8.998 15.1983 8.55073 14.75 7.999 14.75Z" }), _jsx("path", { d: "M11.25 15C10.8358 15 10.5 15.3358 10.5 15.75C10.5 16.1642 10.8358 16.5 11.25 16.5H16.25C16.6642 16.5 17 16.1642 17 15.75C17 15.3358 16.6642 15 16.25 15H11.25Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19V5ZM5 4.5H19C19.2761 4.5 19.5 4.72386 19.5 5V19C19.5 19.2761 19.2761 19.5 19 19.5H5C4.72386 19.5 4.5 19.2761 4.5 19V5C4.5 4.72386 4.72386 4.5 5 4.5Z" })] }));
};
IconSheet.iconName = "sheet";
export default IconSheet;