josemi / icons
v0.7.0
folders
Download
Download the icon as SVG image.
Download Icon
Customize icon
Set your custom size or color and download the icon as SVG or PNG image.
Width
Height
Color
Get SVG
Get PNG
Using as SVG
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>
Using with React
Install @josemi-icons/react and import the icon component in your React application:
import {FoldersIcon} from "@josemi-icons/react";

const MyComponent = () => {
    return (
        <FoldersIcon />
    );
};
Using with CSS
Install @josemi-icons/css and include the icon as a CSS class:
<i class="ji-folders"></i>