readd note metadata

This commit is contained in:
Ren Amamiya
2023-04-29 17:33:35 +07:00
parent e3b74b791a
commit b53bcbec41
12 changed files with 275 additions and 145 deletions

14
src/shared/icons/like.tsx Normal file
View File

@@ -0,0 +1,14 @@
import { SVGProps } from 'react';
export default function LikeIcon(props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) {
return (
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path
d="M12 5.57193C18.3331 -0.86765 29.1898 11.0916 12 20.75C-5.18982 11.0916 5.66687 -0.867651 12 5.57193Z"
stroke="currentColor"
strokeWidth={1.5}
strokeLinejoin="round"
/>
</svg>
);
}