UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

15 lines (14 loc) 3.34 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconNumberedList = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; switch (props?.size) { case "l": 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: "M2 3.75C2 3.33579 2.33579 3 2.75 3H4.5C4.91421 3 5.25 3.33579 5.25 3.75V8.5H6.25C6.66421 8.5 7 8.83579 7 9.25C7 9.66421 6.66421 10 6.25 10H2.75C2.33579 10 2 9.66421 2 9.25C2 8.83579 2.33579 8.5 2.75 8.5H3.75V4.5H2.75C2.33579 4.5 2 4.16421 2 3.75Z" }), _jsx("path", { d: "M9.75 6C9.33579 6 9 6.33579 9 6.75C9 7.16421 9.33579 7.5 9.75 7.5H20.25C20.6642 7.5 21 7.16421 21 6.75C21 6.33579 20.6642 6 20.25 6H9.75Z" }), _jsx("path", { d: "M9.75 16.5C9.33579 16.5 9 16.8358 9 17.25C9 17.6642 9.33579 18 9.75 18H20.25C20.6642 18 21 17.6642 21 17.25C21 16.8358 20.6642 16.5 20.25 16.5H9.75Z" }), _jsx("path", { d: "M2.75 14C2.33579 14 2 14.3358 2 14.75C2 15.1642 2.33579 15.5 2.75 15.5H5.25C5.38807 15.5 5.5 15.6119 5.5 15.75V16.2457C5.5 16.3573 5.42601 16.4554 5.31868 16.4861L3.26924 17.0716C2.51796 17.2863 2 17.973 2 18.7543V20.25C2 20.6642 2.33579 21 2.75 21H6.25C6.66421 21 7 20.6642 7 20.25C7 19.8358 6.66421 19.5 6.25 19.5H3.5V18.7543C3.5 18.6427 3.57399 18.5446 3.68132 18.5139L5.73076 17.9284C6.48204 17.7137 7 17.027 7 16.2457V15.75C7 14.7835 6.2165 14 5.25 14H2.75Z" })] })); default: return (_jsxs("svg", { viewBox: "0 0 20 20", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M2.5001 2.5C2.5001 2.22386 2.72396 2 3.0001 2H4.5001C4.77624 2 5.0001 2.22386 5.0001 2.5V7H6.0001C6.27624 7 6.5001 7.22386 6.5001 7.5C6.5001 7.77614 6.27624 8 6.0001 8H3.0001C2.72396 8 2.5001 7.77614 2.5001 7.5C2.5001 7.22386 2.72396 7 3.0001 7H4.0001V3H3.0001C2.72396 3 2.5001 2.77614 2.5001 2.5Z" }), _jsx("path", { d: "M8.0001 4.5C8.0001 4.22386 8.22396 4 8.5001 4H16.5001C16.7762 4 17.0001 4.22386 17.0001 4.5C17.0001 4.77614 16.7762 5 16.5001 5H8.5001C8.22396 5 8.0001 4.77614 8.0001 4.5Z" }), _jsx("path", { d: "M6.0001 18H2.5001C2.2801 18 2.0901 17.86 2.0201 17.65C1.9501 17.44 2.0401 17.21 2.2201 17.09C3.2901 16.37 5.0001 14.9 5.0001 14.01C5.0001 13.78 4.9101 13.01 4.0001 13.01C3.3301 13.01 2.9501 13.73 2.9501 13.74C2.8201 13.98 2.5201 14.08 2.2801 13.96C2.0301 13.84 1.9401 13.54 2.0601 13.29L2.06698 13.2777C2.14324 13.1391 2.76456 12.01 4.0101 12.01C5.4801 12.01 6.0101 13.21 6.0101 14.01C6.0101 15.07 4.9101 16.23 3.9901 17.01H6.0101C6.2901 17.01 6.5101 17.23 6.5101 17.51C6.5101 17.79 6.2801 18 6.0001 18Z" }), _jsx("path", { d: "M8.5001 14C8.22396 14 8.0001 14.2239 8.0001 14.5C8.0001 14.7761 8.22396 15 8.5001 15H16.5001C16.7762 15 17.0001 14.7761 17.0001 14.5C17.0001 14.2239 16.7762 14 16.5001 14H8.5001Z" }), _jsx("path", { d: "M8.5001 9C8.22396 9 8.0001 9.22386 8.0001 9.5C8.0001 9.77614 8.22396 10 8.5001 10H16.5001C16.7762 10 17.0001 9.77614 17.0001 9.5C17.0001 9.22386 16.7762 9 16.5001 9H8.5001Z" })] })); } }; IconNumberedList.iconName = "numbered-list"; export default IconNumberedList;