mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 07:26:59 +00:00
17 lines
345 B
TypeScript
17 lines
345 B
TypeScript
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
|