✨ Design of profile page
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user