UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

15 lines (14 loc) 2.79 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconReset = (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", { d: "M6.5 4C6.5 3.58579 6.16422 3.25 5.75 3.25C5.33579 3.25 5 3.58579 5 4V8.25C5 8.66421 5.33579 9 5.75 9H10C10.4142 9 10.75 8.66421 10.75 8.25C10.75 7.83579 10.4142 7.5 10 7.5H7.30957C8.10656 6.66928 9.11318 6.06192 10.2289 5.74595C11.5699 5.36617 12.9975 5.42751 14.301 5.92092C15.6046 6.41433 16.715 7.31367 17.4684 8.48626C18.2219 9.65884 18.5784 11.0426 18.4855 12.4332C18.3926 13.8239 17.8552 15.1479 16.9525 16.2099C16.0498 17.2718 14.8296 18.0155 13.472 18.3311C12.1145 18.6468 10.6914 18.5177 9.41277 17.9629C8.13415 17.4081 7.06773 16.4571 6.37084 15.25C6.16373 14.8913 5.70504 14.7684 5.34632 14.9755C4.9876 15.1826 4.86469 15.6413 5.0718 16C5.92951 17.4856 7.24204 18.6562 8.81572 19.339C10.3894 20.0218 12.1409 20.1806 13.8117 19.7922C15.4826 19.4037 16.9843 18.4884 18.0954 17.1814C19.2064 15.8744 19.8679 14.2448 19.9822 12.5332C20.0965 10.8216 19.6577 9.11857 18.7304 7.67539C17.803 6.23221 16.4364 5.12533 14.8321 4.51806C13.2277 3.91078 11.4707 3.83529 9.82015 4.30271C8.57138 4.65636 7.43364 5.30662 6.5 6.19051V4Z" }) })); 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", { d: "M7.7039 4.45673C8.92416 3.95127 10.2771 3.8626 11.5529 4.20445C12.8287 4.5463 13.9561 5.29957 14.7601 6.34743C15.5642 7.3953 16 8.6792 16 10C16 11.3208 15.5642 12.6047 14.7601 13.6526C13.9561 14.7004 12.8287 15.4537 11.5529 15.7956C10.2771 16.1374 8.92416 16.0487 7.7039 15.5433C6.48363 15.0378 5.46425 14.1439 4.80385 13C4.66578 12.7609 4.35998 12.6789 4.12083 12.817C3.88169 12.9551 3.79975 13.2609 3.93782 13.5C4.70829 14.8345 5.89757 15.8775 7.32122 16.4672C8.74486 17.0569 10.3233 17.1603 11.8117 16.7615C13.3002 16.3627 14.6154 15.4838 15.5535 14.2613C16.4915 13.0388 17 11.5409 17 10C17 8.45906 16.4915 6.96118 15.5535 5.73867C14.6154 4.51616 13.3002 3.63735 11.8117 3.23852C10.3233 2.8397 8.74486 2.94315 7.32122 3.53285C5.93533 4.1069 4.77154 5.11051 4 6.39445V3.5C4 3.22386 3.77614 3 3.5 3C3.22386 3 3 3.22386 3 3.5V7.5C3 7.77614 3.22386 8 3.5 8H7.5C7.77614 8 8 7.77614 8 7.5C8 7.22386 7.77614 7 7.5 7H4.80385C5.46425 5.85615 6.48363 4.96218 7.7039 4.45673Z" }) })); } }; IconReset.iconName = "reset"; export default IconReset;