Copy and paste the following SVG code into your HTML file where you want the icon to appear. Then, you can customize the SVG attributes, such as size or color, using inline styling or CSS classes.
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="1em" height="1em">
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 4C7 4 7 6 7 6L7 14C7 14 7 16 9 16L19 16C21 16 21 14 21 14L21 8C21 8 21 6 19 6L15 6L13 4L9 4ZM18 17L18 18C18 18 18 20 16 20C12.9586 20 8.04138 20 5 20C3 20 3 18 3 18C3 18 3 12 3 10C3 8 5 8 5 8L6 8" />
</svg>
You can integrate this icon in your React application using our React icons components. First install the package using YARN or NPM:
$ yarn add @josemi-icons/react
Now you can import this icon in your React application
import {FoldersIcon} from "@josemi-icons/react";
Alternatively, if you only need this icon jou can just copy and paste the following component into your React application:
const FoldersIcon = () => (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="1em" height="1em">
<path fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 4C7 4 7 6 7 6L7 14C7 14 7 16 9 16L19 16C21 16 21 14 21 14L21 8C21 8 21 6 19 6L15 6L13 4L9 4ZM18 17L18 18C18 18 18 20 16 20C12.9586 20 8.04138 20 5 20C3 20 3 18 3 18C3 18 3 12 3 10C3 8 5 8 5 8L6 8" />
</svg>
);
You can now use the icon component in your React application like any other React component.