New changes

This commit is contained in:
Bel Curcio
2021-06-03 19:40:46 -03:00
parent 75c5d0be87
commit 45554c68d6
5 changed files with 55 additions and 20 deletions

16
components/icons/Star.tsx Normal file
View File

@@ -0,0 +1,16 @@
const Star = ({ ...props }) => {
return (
<svg
width="20"
height="20"
viewBox="0 0 20 20"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path d="M12.43 8L10 0L7.57 8H0L6.18 12.41L3.83 20L10 15.31L16.18 20L13.83 12.41L20 8H12.43Z" />
</svg>
)
}
export default Star