Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
459 Bytes
import React from 'react';
const IconFolder = () => (
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="1"
strokeLinecap="round"
strokeLinejoin="round"
className="feather feather-folder">
<title>Folder</title>
<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path>
</svg>
);
export default IconFolder;