@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 781 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconCrownFilled = (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: "M12 3a.75.75 0 0 1 .617.323l4.122 5.954 4.162-2.19a.75.75 0 0 1 1.09.781L20.855 15H3.145L2.01 7.868a.75.75 0 0 1 1.09-.782l4.163 2.19 4.122-5.953A.75.75 0 0 1 12 3M3.385 16.5l.273 1.717a2.25 2.25 0 0 0 2.222 1.896h12.24a2.25 2.25 0 0 0 2.222-1.896l.274-1.717z" }) }));
};
IconCrownFilled.iconName = "crown--filled";
export default IconCrownFilled;