mirror of https://github.com/sgoudham/website.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
778 B
TypeScript
20 lines
778 B
TypeScript
1 year ago
|
export const Star = () => {
|
||
|
return (
|
||
|
<svg
|
||
|
className="h-5 w-5 xl:h-6 xl:w-6 inline align-text-bottom"
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
viewBox="0 0 256 256"
|
||
|
>
|
||
|
<rect width="256" height="256" fill="none" />
|
||
|
<path
|
||
|
d="M135.34,28.9l23.23,55.36a8,8,0,0,0,6.67,4.88l59.46,5.14a8,8,0,0,1,4.54,14.07L184.13,147.7a8.08,8.08,0,0,0-2.54,7.89l13.52,58.54a8,8,0,0,1-11.89,8.69l-51.1-31a7.93,7.93,0,0,0-8.24,0l-51.1,31a8,8,0,0,1-11.89-8.69l13.52-58.54a8.08,8.08,0,0,0-2.54-7.89L26.76,108.35A8,8,0,0,1,31.3,94.28l59.46-5.14a8,8,0,0,0,6.67-4.88L120.66,28.9A8,8,0,0,1,135.34,28.9Z"
|
||
|
fill="orange"
|
||
|
stroke="currentColor"
|
||
|
strokeLinecap="round"
|
||
|
strokeLinejoin="round"
|
||
|
strokeWidth="0"
|
||
|
/>
|
||
|
</svg>
|
||
|
);
|
||
|
};
|