styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 738 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var FilterAlt = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M13 20v-4.586L20.414 8c.375-.375.586-.884.586-1.415V4a1 1 0 00-1-1H4a1 1 0 00-1 1v2.585c0 .531.211 1.04.586 1.415L11 15.414V22l2-2z", key: "k0" })));
});
FilterAlt.displayName = 'FilterAlt';
export var FilterAltDimensions = { height: 24, width: 24 };