UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

8 lines (7 loc) 523 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgFilter(props) { return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props }, React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M19.25 4.75H4.75l4.562 5.702a2 2 0 01.438 1.25v6.548a1 1 0 001 1h2.5a1 1 0 001-1v-6.548a2 2 0 01.438-1.25L19.25 4.75z" }))); } export default SvgFilter;