josemi/icons
v0.6.1
files
Added: v0.1.0
filesdoublecomputerdocument
Download
Download the icon as SVG image to use or edit it.
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

Embed this icon within HTML

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="M11 3C9 3 9 5 9 5L9 15C9 15 9 17 11 17L18 17C20 17 20 15 20 15L20 7L16 3L11 3ZM15 3L15 6C15 6 15 8 17 8L20 8M17 17L17 19C17 19 17 21 15 21C12.2049 21 7 21 7 21C7 21 5 21 5 19C5 15.4645 5 11.5355 5 8C5 6 7 6 7 6L9 6" />
</svg>

Using as a React Component

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 {FilesIcon} 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 FilesIcon = () => (
    <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="M11 3C9 3 9 5 9 5L9 15C9 15 9 17 11 17L18 17C20 17 20 15 20 15L20 7L16 3L11 3ZM15 3L15 6C15 6 15 8 17 8L20 8M17 17L17 19C17 19 17 21 15 21C12.2049 21 7 21 7 21C7 21 5 21 5 19C5 15.4645 5 11.5355 5 8C5 6 7 6 7 6L9 6" />
    </svg>
);

You can now use the icon component in your React application like any other React component.

Designed by Josemi. Source code available on GitHub.