@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.69 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconListCollapse = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
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: "M9.5 14C9.77614 14 10 14.2239 10 14.5C10 14.7761 9.77614 15 9.5 15H3.5C3.22386 15 3 14.7761 3 14.5C3 14.2239 3.22386 14 3.5 14H9.5Z" }), _jsx("path", { d: "M14.5 12C14.6326 12 14.7597 12.0527 14.8535 12.1465L16.8535 14.1465C17.0488 14.3417 17.0488 14.6583 16.8535 14.8535C16.6583 15.0488 16.3417 15.0488 16.1465 14.8535L14.5 13.207L12.8535 14.8535C12.6583 15.0488 12.3417 15.0488 12.1465 14.8535C11.9512 14.6583 11.9512 14.3417 12.1465 14.1465L14.1465 12.1465L14.2227 12.084C14.3042 12.0296 14.4006 12 14.5 12Z" }), _jsx("path", { d: "M9.5 9C9.77614 9 10 9.22386 10 9.5C10 9.77614 9.77614 10 9.5 10H3.5C3.22386 10 3 9.77614 3 9.5C3 9.22386 3.22386 9 3.5 9H9.5Z" }), _jsx("path", { d: "M16.1465 4.14648C16.3417 3.95122 16.6583 3.95122 16.8535 4.14648C17.0488 4.34175 17.0488 4.65825 16.8535 4.85352L14.8535 6.85352C14.6583 7.04878 14.3417 7.04878 14.1465 6.85352L12.1465 4.85352C11.9512 4.65825 11.9512 4.34175 12.1465 4.14648C12.3417 3.95122 12.6583 3.95122 12.8535 4.14648L14.5 5.79297L16.1465 4.14648Z" }), _jsx("path", { d: "M9.5 4C9.77614 4 10 4.22386 10 4.5C10 4.77614 9.77614 5 9.5 5H3.5C3.22386 5 3 4.77614 3 4.5C3 4.22386 3.22386 4 3.5 4H9.5Z" })] }));
};
IconListCollapse.iconName = "list-collapse";
export default IconListCollapse;