mirror of
https://github.com/vercel/commerce.git
synced 2025-06-29 09:51:22 +00:00
Add Filter icon
This commit is contained in:
parent
29c3fc7803
commit
92c8efc851
22
components/icons/Filter.tsx
Normal file
22
components/icons/Filter.tsx
Normal file
@ -0,0 +1,22 @@
|
||||
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
|
@ -12,3 +12,4 @@ export { default as Github } from './Github'
|
||||
export { default as DoubleChevron } from './DoubleChevron'
|
||||
export { default as RightArrow } from './RightArrow'
|
||||
export { default as Info } from './Info'
|
||||
export { default as Filter } from './Filter'
|
||||
|
Loading…
x
Reference in New Issue
Block a user