@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 670 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconFlashFilled = (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: "M15.964 2.98a.75.75 0 0 0-1.268-.736l-10.5 11.5A.75.75 0 0 0 4.75 15h5.221l-1.935 6.02a.75.75 0 0 0 1.268.736l10.5-11.5A.75.75 0 0 0 19.25 9h-5.221z" }) }));
};
IconFlashFilled.iconName = "flash--filled";
export default IconFlashFilled;