@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.15 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconStarburstsFilled = (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: "M16.57 2.359c.333-.844 1.527-.844 1.86 0l.909 2.303 2.302.908c.844.333.844 1.527 0 1.86l-2.302.908-.909 2.303c-.333.844-1.527.844-1.86 0l-.909-2.303-2.302-.908c-.844-.333-.844-1.527 0-1.86l2.303-.909zM16.57 13.359c.333-.844 1.527-.844 1.86 0l.909 2.303 2.302.908c.844.333.844 1.527 0 1.86l-2.302.909-.909 2.302c-.333.844-1.527.844-1.86 0l-.909-2.302-2.302-.909c-.844-.333-.844-1.527 0-1.86l2.303-.909zM8.93 6.359c-.333-.844-1.527-.844-1.86 0L5.737 9.737 2.36 11.07c-.844.333-.844 1.527 0 1.86l3.378 1.333L7.07 17.64c.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.333z" }) }));
};
IconStarburstsFilled.iconName = "starbursts--filled";
export default IconStarburstsFilled;