UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

17 lines (16 loc) 2.13 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconAccessibilityFilled = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; switch (props?.size) { case "l": return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10m0-12.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4m-4.775.77a.75.75 0 0 1 1.025-.275 7.5 7.5 0 0 0 7.5 0 .75.75 0 0 1 .75 1.3 9 9 0 0 1-3.75 1.174v1.522l2.59 3.296a.75.75 0 0 1-1.18.926L12 15.463l-2.16 2.75a.75.75 0 0 1-1.18-.926l2.59-3.296v-1.522a9 9 0 0 1-3.75-1.175.75.75 0 0 1-.275-1.024", clipRule: "evenodd" }) })); case "s": return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 16 16", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0m-3.668-1.262a.5.5 0 0 1-.27.653 8 8 0 0 1-2.562.593v.84l1.89 2.364a.5.5 0 1 1-.78.624L8 9.8l-1.61 2.012a.5.5 0 1 1-.78-.624L7.5 8.825v-.84a8 8 0 0 1-2.561-.594.5.5 0 1 1 .382-.924 7 7 0 0 0 5.358 0 .5.5 0 0 1 .653.27M9 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0", clipRule: "evenodd" }) })); default: return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 20 20", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16m0-10a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m-3.5.062a.5.5 0 1 0-.5.866 8 8 0 0 0 3.5 1.056v.835l-2.384 2.86a.5.5 0 0 0 .768.641L10 11.781l2.116 2.54a.5.5 0 0 0 .768-.641L10.5 10.819v-.835A8 8 0 0 0 14 8.928a.5.5 0 0 0-.5-.866 7 7 0 0 1-7 0", clipRule: "evenodd" }) })); } }; IconAccessibilityFilled.iconName = "accessibility--filled"; export default IconAccessibilityFilled;