UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.49 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconRotate360 = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; 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.30956C8.15764 6.61603 9.24326 5.98485 10.4449 5.68876C11.9495 5.31804 13.537 5.49702 14.9213 6.19345C16.3056 6.88987 17.3955 8.05792 17.9946 9.487C18.5937 10.9161 18.6625 12.5122 18.1887 13.9875C17.7149 15.4629 16.7296 16.7204 15.4104 17.5335C14.0912 18.3465 12.525 18.6615 10.9941 18.4217C9.46321 18.1819 8.06833 17.4031 7.06096 16.2256C6.05359 15.0482 5.5 13.5496 5.5 12C5.5 11.5858 5.16421 11.25 4.75 11.25C4.33579 11.25 4 11.5858 4 12C4 13.9072 4.68134 15.7516 5.92118 17.2008C7.16102 18.6499 8.8778 19.6085 10.762 19.9036C12.6462 20.1988 14.5738 19.8111 16.1974 18.8104C17.821 17.8098 19.0337 16.262 19.6168 14.4462C20.2 12.6304 20.1153 10.6659 19.3779 8.90707C18.6406 7.1482 17.2991 5.71061 15.5954 4.85347C13.8917 3.99634 11.9379 3.77605 10.0861 4.23232C8.733 4.56571 7.49948 5.24429 6.5 6.1905V4Z" }) })); }; IconRotate360.iconName = "rotate360"; export default IconRotate360;