UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

15 lines (14 loc) 3.05 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconSettingsFilled = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; switch (props?.size) { case "l": return (_jsx("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", { fillRule: "evenodd", clipRule: "evenodd", d: "M13.8843 3.33208C13.2537 1.5589 10.746 1.5589 10.1155 3.33208L10.0697 3.46075C9.67263 4.5774 8.39709 5.10574 7.32671 4.59694L7.20337 4.53832C5.50367 3.73037 3.73049 5.50355 4.53844 7.20325L4.59706 7.32659C5.10587 8.39697 4.57752 9.67251 3.46087 10.0696L3.3322 10.1154C1.55903 10.7459 1.55903 13.2536 3.3322 13.8842L3.46087 13.9299C4.57752 14.327 5.10587 15.6025 4.59706 16.6729L4.53844 16.7963C3.73049 18.496 5.50367 20.2691 7.20337 19.4612L7.32671 19.4026C8.39709 18.8938 9.67263 19.4221 10.0697 20.5388L10.1155 20.6674C10.746 22.4406 13.2537 22.4406 13.8843 20.6674L13.93 20.5388C14.3271 19.4221 15.6027 18.8938 16.673 19.4026L16.7964 19.4612C18.4961 20.2691 20.2693 18.496 19.4613 16.7963L19.4027 16.6729C18.8939 15.6025 19.4222 14.327 20.5389 13.9299L20.6676 13.8842C22.4407 13.2536 22.4407 10.7459 20.6676 10.1154L20.5389 10.0696C19.4222 9.67251 18.8939 8.39697 19.4027 7.32659L19.4613 7.20325C20.2693 5.50355 18.4961 3.73037 16.7964 4.53832L16.673 4.59694C15.6027 5.10574 14.3271 4.5774 13.93 3.46075L13.8843 3.33208ZM12 15.9999C14.2091 15.9999 16 14.209 16 11.9999C16 9.79074 14.2091 7.99988 12 7.99988C9.79086 7.99988 8 9.79074 8 11.9999C8 14.209 9.79086 15.9999 12 15.9999Z" }) })); default: return (_jsx("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", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.5139 3.13624C11.069 1.62679 8.931 1.62679 8.48609 3.13624C8.20182 4.10072 7.10019 4.55703 6.21719 4.07605C4.83524 3.3233 3.32343 4.83512 4.07617 6.21707C4.55715 7.10007 4.10084 8.20169 3.13636 8.48597C1.62691 8.93088 1.62691 11.0689 3.13636 11.5138C4.10084 11.7981 4.55715 12.8997 4.07617 13.7827C3.32343 15.1647 4.83525 16.6765 6.21719 15.9237C7.10019 15.4428 8.20182 15.8991 8.48609 16.8636C8.931 18.373 11.069 18.373 11.5139 16.8636C11.7982 15.8991 12.8998 15.4428 13.7828 15.9237C15.1648 16.6765 16.6766 15.1647 15.9239 13.7827C15.4429 12.8997 15.8992 11.7981 16.8637 11.5138C18.3731 11.0689 18.3731 8.93088 16.8637 8.48597C15.8992 8.20169 15.4429 7.10007 15.9239 6.21707C16.6766 4.83512 15.1648 3.3233 13.7828 4.07605C12.8998 4.55703 11.7982 4.10072 11.5139 3.13624ZM10 12.9999C11.6569 12.9999 13 11.6568 13 9.9999C13 8.34304 11.6569 6.9999 10 6.9999C8.34316 6.9999 7.00002 8.34304 7.00002 9.9999C7.00002 11.6568 8.34316 12.9999 10 12.9999Z" }) })); } }; IconSettingsFilled.iconName = "settings--filled"; export default IconSettingsFilled;