Add Filter icon

This commit is contained in:
Matheus Kuster 2020-11-07 11:28:59 -03:00
parent 29c3fc7803
commit 92c8efc851
2 changed files with 23 additions and 0 deletions

View 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

View File

@ -12,3 +12,4 @@ export { default as Github } from './Github'
export { default as DoubleChevron } from './DoubleChevron' export { default as DoubleChevron } from './DoubleChevron'
export { default as RightArrow } from './RightArrow' export { default as RightArrow } from './RightArrow'
export { default as Info } from './Info' export { default as Info } from './Info'
export { default as Filter } from './Filter'