@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 703 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconFilterAltFilled = (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: "M9 12.333 3.671 7.597A2 2 0 0 1 3 6.102V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v1.102a2 2 0 0 1-.671 1.495L15 12.333v8.532a1 1 0 0 1-1.64.768L9.72 18.6A2 2 0 0 1 9 17.063z" }) }));
};
IconFilterAltFilled.iconName = "filter-alt--filled";
export default IconFilterAltFilled;