UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.08 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconRotate180 = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; 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", { d: "M17.499 4a.75.75 0 0 1 1.5 0v4.25a.75.75 0 0 1-.75.75h-4.25a.75.75 0 0 1 0-1.5h2.69A6.5 6.5 0 0 0 5.5 12a.75.75 0 0 1-1.5 0 8 8 0 0 1 13.5-5.81zM18.5 11.983a.75.75 0 1 1 1.5-.003 8 8 0 0 1-.442 2.643.75.75 0 1 1-1.418-.49 6.5 6.5 0 0 0 .36-2.15M16.607 16.585a.75.75 0 1 1 1.063 1.058 8 8 0 0 1-2.181 1.556.75.75 0 0 1-.656-1.349 6.5 6.5 0 0 0 1.774-1.265M4.8 15.49a.75.75 0 1 1 1.349-.656c.32.658.747 1.258 1.265 1.774a.75.75 0 1 1-1.059 1.063A8 8 0 0 1 4.8 15.49M12.016 18.501a.75.75 0 1 1 .002 1.5 8 8 0 0 1-2.642-.442.75.75 0 1 1 .49-1.418 6.6 6.6 0 0 0 2.15.36" }) })); }; IconRotate180.iconName = "rotate180"; export default IconRotate180;