mirror of
https://github.com/vercel/commerce.git
synced 2025-06-18 13:11:23 +00:00
23 lines
433 B
XML
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
|