@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.42 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconStarbursts = (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", { fillRule: "evenodd", d: "m15.662 4.662-2.303.908c-.844.333-.844 1.527 0 1.86l2.303.908.908 2.303c.333.844 1.527.844 1.86 0l.908-2.303 2.303-.908c.844-.333.844-1.527 0-1.86l-2.303-.909-.908-2.302c-.333-.844-1.527-.844-1.86 0zm2.52 1.156-.682-1.73-.682 1.73-1.73.682 1.73.682.682 1.73.682-1.73 1.73-.682zM15.662 15.662l-2.303.908c-.844.333-.844 1.527 0 1.86l2.303.909.908 2.302c.333.844 1.527.844 1.86 0l.908-2.302 2.303-.909c.844-.333.844-1.527 0-1.86l-2.303-.909-.908-2.302c-.333-.844-1.527-.844-1.86 0zm2.52 1.156-.682-1.73-.682 1.73-1.73.682 1.73.682.682 1.73.682-1.73 1.73-.682zM2.359 11.07l3.378-1.333L7.07 6.36c.333-.844 1.527-.844 1.86 0l1.333 3.378 3.378 1.333c.844.333.844 1.527 0 1.86l-3.378 1.333L8.93 17.64c-.333.844-1.527.844-1.86 0l-1.333-3.378L2.36 12.93c-.844-.333-.844-1.527 0-1.86m6.747-.176L11.912 12l-2.806 1.106L8 15.912l-1.106-2.806L4.088 12l2.806-1.106L8 8.088z", clipRule: "evenodd" }) }));
};
IconStarbursts.iconName = "starbursts";
export default IconStarbursts;