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="M3 5C3 5 3 4 4 4L6 4C7 4 7 5 7 5L7 7C7 7 7 8 6 8L4 8C3 8 3 7 3 7L3 5ZM3 17C3 17 3 16 4 16L6 16C7 16 7 17 7 17L7 19C7 19 7 20 6 20L4 20C3 20 3 19 3 19L3 17ZM10 5C10 5 10 4 11 4L13 4C14 4 14 5 14 5L14 7C14 7 14 8 13 8L11 8C10 8 10 7 10 7L10 5ZM10 17C10 17 10 16 11 16L13 16C14 16 14 17 14 17L14 19C14 19 14 20 13 20L11 20C10 20 10 19 10 19L10 17ZM17 5C17 5 17 4 18 4L20 4C21 4 21 5 21 5L21 7C21 7 21 8 20 8L18 8C17 8 17 7 17 7L17 5ZM17 17C17 17 17 16 18 16L20 16C21 16 21 17 21 17L21 19C21 19 21 20 20 20L18 20C17 20 17 19 17 19L17 17ZM3 12L21 12" />
</svg>
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 {GridDividerIcon} 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 GridDividerIcon = () => (
<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="M3 5C3 5 3 4 4 4L6 4C7 4 7 5 7 5L7 7C7 7 7 8 6 8L4 8C3 8 3 7 3 7L3 5ZM3 17C3 17 3 16 4 16L6 16C7 16 7 17 7 17L7 19C7 19 7 20 6 20L4 20C3 20 3 19 3 19L3 17ZM10 5C10 5 10 4 11 4L13 4C14 4 14 5 14 5L14 7C14 7 14 8 13 8L11 8C10 8 10 7 10 7L10 5ZM10 17C10 17 10 16 11 16L13 16C14 16 14 17 14 17L14 19C14 19 14 20 13 20L11 20C10 20 10 19 10 19L10 17ZM17 5C17 5 17 4 18 4L20 4C21 4 21 5 21 5L21 7C21 7 21 8 20 8L18 8C17 8 17 7 17 7L17 5ZM17 17C17 17 17 16 18 16L20 16C21 16 21 17 21 17L21 19C21 19 21 20 20 20L18 20C17 20 17 19 17 19L17 17ZM3 12L21 12" />
</svg>
);
You can now use the icon component in your React application like any other React component.