@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 817 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconOctagonFilled = (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.107 2.5a2 2 0 0 1 1.414.586l4.393 4.393a2 2 0 0 1 .586 1.414v6.214a2 2 0 0 1-.586 1.414l-4.393 4.393a2 2 0 0 1-1.414.586H8.893a2 2 0 0 1-1.414-.586l-4.393-4.393a2 2 0 0 1-.586-1.414V8.893a2 2 0 0 1 .586-1.414l4.393-4.393A2 2 0 0 1 8.893 2.5z", clipRule: "evenodd" }) }));
};
IconOctagonFilled.iconName = "octagon--filled";
export default IconOctagonFilled;