UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

15 lines (14 loc) 2.55 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconBlockQuote = (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: "M3.75 3C3.33579 3 3 3.33579 3 3.75V20.25C3 20.6642 3.33579 21 3.75 21C4.16421 21 4.5 20.6642 4.5 20.25V3.75C4.5 3.33579 4.16421 3 3.75 3Z" }), _jsx("path", { d: "M20.25 3C20.6642 3 21 3.33579 21 3.75C21 4.16421 20.6642 4.5 20.25 4.5H7.75C7.33579 4.5 7 4.16421 7 3.75C7 3.33579 7.33579 3 7.75 3H20.25Z" }), _jsx("path", { d: "M17.25 8.5C17.6642 8.5 18 8.83579 18 9.25C18 9.66421 17.6642 10 17.25 10H7.75C7.33578 10 7 9.66421 7 9.25C7 8.83579 7.33578 8.5 7.75 8.5H17.25Z" }), _jsx("path", { d: "M21 14.75C21 14.3358 20.6642 14 20.25 14H7.75C7.33579 14 7 14.3358 7 14.75C7 15.1642 7.33579 15.5 7.75 15.5H20.25C20.6642 15.5 21 15.1642 21 14.75Z" }), _jsx("path", { d: "M17.25 19.5C17.6642 19.5 18 19.8358 18 20.25C18 20.6642 17.6642 21 17.25 21H7.75C7.33578 21 7 20.6642 7 20.25C7 19.8358 7.33578 19.5 7.75 19.5H17.25Z" })] })); 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: "M3.5 3C3.77614 3 4 3.22386 4 3.5V16.5C4 16.7761 3.77614 17 3.5 17C3.22386 17 3 16.7761 3 16.5V3.5C3 3.22386 3.22386 3 3.5 3Z" }), _jsx("path", { d: "M13.3662 16C13.6423 16.0001 13.8662 16.2239 13.8662 16.5C13.8662 16.7761 13.6423 16.9999 13.3662 17H6.36621C6.09007 17 5.86621 16.7761 5.86621 16.5C5.86621 16.2239 6.09007 16 6.36621 16H13.3662Z" }), _jsx("path", { d: "M16.5 11.667C16.7761 11.667 17 11.8909 17 12.167C16.9998 12.443 16.776 12.667 16.5 12.667H6.5C6.22398 12.667 6.0002 12.443 6 12.167C6 11.8909 6.22386 11.667 6.5 11.667H16.5Z" }), _jsx("path", { d: "M13.5 7.33301C13.776 7.33301 13.9998 7.55701 14 7.83301C14 8.10915 13.7761 8.33301 13.5 8.33301H6.5C6.22386 8.33301 6 8.10915 6 7.83301C6.00016 7.55701 6.22396 7.33301 6.5 7.33301H13.5Z" }), _jsx("path", { d: "M16.5 3C16.7761 3 17 3.22386 17 3.5C17 3.77614 16.7761 4 16.5 4H6.5C6.22386 4 6 3.77614 6 3.5C6 3.22386 6.22386 3 6.5 3H16.5Z" })] })); } }; IconBlockQuote.iconName = "block-quote"; export default IconBlockQuote;