25 lines
880 B
TypeScript
25 lines
880 B
TypeScript
export function FolderOpenIcon({ className }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M20 8C20 6.96907 19.1643 6.13333 18.1333 6.13333H12.3602C11.8439 6.13333 11.3476 5.93367 10.9751 5.57611L9.91378 4.55723C9.54132 4.19967 9.04502 4 8.52871 4H6C4.89543 4 4 4.89543 4 6V8"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
/>
|
|
<path
|
|
d="M3.24676 13.2209C3.11513 12.0361 4.04251 11 5.23453 11H18.7655C19.9575 11 20.8849 12.0361 20.7532 13.2209L20.1977 18.2209C20.0851 19.2337 19.229 20 18.2099 20H5.79009C4.77099 20 3.91486 19.2337 3.80232 18.2209L3.24676 13.2209Z"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|