@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 813 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconFlash = (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.626 2.101a.75.75 0 0 1 .338.878L14.029 9h5.221a.75.75 0 0 1 .554 1.256l-10.5 11.5a.75.75 0 0 1-1.268-.736L9.971 15H4.75a.75.75 0 0 1-.554-1.256l10.5-11.5a.75.75 0 0 1 .93-.143M6.45 13.5H11a.75.75 0 0 1 .714.98l-1.196 3.722L17.55 10.5H13a.75.75 0 0 1-.714-.98l1.196-3.722z", clipRule: "evenodd" }) }));
};
IconFlash.iconName = "flash";
export default IconFlash;