2020-11-07 11:42:17 -03:00

23 lines
433 B
XML

const Filter = ({ ...props }) => {
return (
<svg
fill="none"
height="24"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
stroke="currentColor"
viewBox="0 0 24 24"
width="24"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<polygon
points="22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"
/>
</svg>
)
}
export default Filter