quotes-nextjs

My favourite quotes. (nextjs)
git clone http://git.hanabi.in/repos/quotes-nextjs.git
Log | Files | Refs | LICENSE

Folder.js (341B)


      1 function Folder() {
      2   return (
      3     <svg
      4       className="icon"
      5       viewBox="0 0 24 24"
      6       strokeLinecap="round"
      7       strokeLinejoin="round"
      8       strokeWidth="2"
      9       aria-hidden="true"
     10     >
     11       <path d="M22,19a2,2,0,0,1-2,2H4a2,2,0,0,1-2-2V5A2,2,0,0,1,4,3H9l2,3h9a2,2,0,0,1,2,2Z"></path>
     12     </svg>
     13   );
     14 }
     15 
     16 export default Folder;