@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 874 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLayersFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("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: "M13 2.577a2 2 0 0 0-2 0L3.742 6.768c-1.334.77-1.334 2.694 0 3.464L11 14.422a2 2 0 0 0 2 0l7.258-4.19c1.334-.77 1.334-2.694 0-3.464z" }), _jsx("path", { d: "m10.25 15.722-4.946-2.856-1.562.902c-1.334.77-1.334 2.694 0 3.464L11 21.422a2 2 0 0 0 2 0l7.258-4.19c1.334-.77 1.334-2.694 0-3.464l-1.562-.902-4.946 2.856a3.5 3.5 0 0 1-3.5 0" })] }));
};
IconLayersFilled.iconName = "layers--filled";
export default IconLayersFilled;