josemi / icons
v0.7.0
vector-square
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="M4 3C4 3 3 3 3 4L3 6C3 7 4 7 4 7L6 7C6 7 7 7 7 6L7 4C7 3 6 3 6 3L4 3ZM18 3C18 3 17 3 17 4L17 6C17 7 18 7 18 7L20 7C20 7 21 7 21 6L21 4C21 3 20 3 20 3L18 3ZM18 17C18 17 17 17 17 18L17 20C17 21 18 21 18 21L20 21C20 21 21 21 21 20L21 18C21 17 20 17 20 17L18 17ZM4 17C4 17 3 17 3 18L3 20C3 21 4 21 4 21L6 21C6 21 7 21 7 20L7 18C7 17 6 17 6 17L4 17ZM8 19L16 19M5 16L5 8M8 5L16 5M19 8L19 16" />
</svg>
Using with React
Install @josemi-icons/react and import the icon component in your React application:
import {VectorSquareIcon} from "@josemi-icons/react";

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