UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.56 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconChairDesk = (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: "M5.67921 4.00293C6.09132 3.96394 6.45824 4.26659 6.49757 4.67871L7.38917 14.0479C7.41383 14.3042 7.62959 14.5 7.88722 14.5H8.4419L11.0884 11.5H9.2505C8.83628 11.5 8.5005 11.1642 8.5005 10.75C8.5005 10.3358 8.83628 10 9.2505 10H15.7505C16.1645 10.0003 16.5005 10.3359 16.5005 10.75C16.5005 11.1641 16.1645 11.4997 15.7505 11.5H13.0894L10.4419 14.5H17.2505C17.6645 14.5003 18.0005 14.8359 18.0005 15.25C18.0005 15.6641 17.6645 15.9997 17.2505 16H12.7505V18.7861L16.3355 20.5791C16.7055 20.7644 16.8561 21.2147 16.6714 21.585C16.4863 21.9552 16.0359 22.1055 15.6655 21.9209L12.0005 20.0879L8.33546 21.9209C7.96511 22.1058 7.51483 21.9552 7.3296 21.585C7.14466 21.2146 7.29518 20.7643 7.66554 20.5791L11.2505 18.7861V16H7.88722C6.85612 16 5.99378 15.2159 5.896 14.1895L5.00343 4.82129C4.96416 4.40899 5.26693 4.04227 5.67921 4.00293Z" }), _jsx("path", { d: "M8.7505 2C9.16449 2.00026 9.5005 2.33595 9.5005 2.75V6.25C9.5005 6.66405 9.16449 6.99974 8.7505 7C8.33628 7 8.0005 6.66421 8.0005 6.25V2.75C8.0005 2.33579 8.33628 2 8.7505 2Z" })] })); }; IconChairDesk.iconName = "chair-desk"; export default IconChairDesk;