Design of profile page

This commit is contained in:
2024-09-05 19:23:11 +02:00
parent aebde116b2
commit 3b90f9acd2
10 changed files with 1215 additions and 24 deletions
+20
View File
@@ -0,0 +1,20 @@
const ArrowRightIcon = (props) => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
viewBox='0 0 512 512'
{...props}
>
<path
fill='none'
stroke='currentColor'
strokeLinecap='round'
strokeLinejoin='round'
strokeWidth='48'
d='M184 112l144 144-144 144'
/>
</svg>
);
};
export default ArrowRightIcon;