josemi / icons
v0.7.0
blocks
v0.7.0
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="M20 3C20 3 21 3 21 4L21 9C21 10 20 10 20 10L15 10C15 10 14 10 14 9L14 4C14 3 15 3 15 3L20 3ZM3 8C3 7 4 7 4 7L9 7C9 7 10 7 10 8L10 14L16 14C16 14 17 14 17 15L17 20C17 21 16 21 16 21L4 21C4 21 3 21 3 20L3 8ZM4 14L10 14L10 21" />
</svg>
Using with React
Install @josemi-icons/react and import the icon component in your React application:
import {BlocksIcon} from "@josemi-icons/react";

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