josemi/icons
v0.6.1
books
Added: v0.4.0
bookscollectioneducationlibraryschoolreading
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="M5 4.04607C4 4.04607 4 5.04607 4 5.04607L4 19.0461C4 19.0461 4 20.0461 5 20.0461L7 20.0461C8 20.0461 8 19.0461 8 19.0461L8 5.04607C8 5.04607 8 4.04607 7 4.04607L5 4.04607ZM10 4.04607C9 4.04607 9 5.04607 9 5.04607L9 19.0461C9 19.0461 9 20.0461 10 20.0461L12 20.0461C13 20.0461 13 19.0461 13 19.0461L13 5.04607C13 5.04607 13 4.04607 12 4.04607L10 4.04607ZM14.8347 4.34198C13.8479 4.50399 14.0099 5.49078 14.0099 5.49078L16.278 19.3058C16.278 19.3058 16.44 20.2926 17.4268 20.1306L19.4004 19.8066C20.3871 19.6446 20.2251 18.6578 20.2251 18.6578L17.9571 4.84275C17.9571 4.84275 17.7951 3.85596 16.8083 4.01797L14.8347 4.34198ZM10 16L12 16M5 9L7 9M10 8L12 8M16.6033 15.2064L18.5757 14.8751" />
</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 {BooksIcon} 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 BooksIcon = () => (
    <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="M5 4.04607C4 4.04607 4 5.04607 4 5.04607L4 19.0461C4 19.0461 4 20.0461 5 20.0461L7 20.0461C8 20.0461 8 19.0461 8 19.0461L8 5.04607C8 5.04607 8 4.04607 7 4.04607L5 4.04607ZM10 4.04607C9 4.04607 9 5.04607 9 5.04607L9 19.0461C9 19.0461 9 20.0461 10 20.0461L12 20.0461C13 20.0461 13 19.0461 13 19.0461L13 5.04607C13 5.04607 13 4.04607 12 4.04607L10 4.04607ZM14.8347 4.34198C13.8479 4.50399 14.0099 5.49078 14.0099 5.49078L16.278 19.3058C16.278 19.3058 16.44 20.2926 17.4268 20.1306L19.4004 19.8066C20.3871 19.6446 20.2251 18.6578 20.2251 18.6578L17.9571 4.84275C17.9571 4.84275 17.7951 3.85596 16.8083 4.01797L14.8347 4.34198ZM10 16L12 16M5 9L7 9M10 8L12 8M16.6033 15.2064L18.5757 14.8751" />
    </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.