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 11.5C5 11.5 3 11.5 3 13.5C3 15.5 5 15.5 5 15.5L19 15.5C19 15.5 21 15.5 21 13.5C21 11.5 19 11.5 19 11.5L5 11.5ZM4 15.5L4 17.5C4 17.5 4 19.5 6 19.5L18 19.5C20 19.5 20 17.5 20 17.5L20 15.5M4 11L4 9.5C4 9.5 4 4.5 11 4.5L13 4.5C20 4.5 20 9.5 20 9.5L20 11M9 8.5L9 8.5M12 7.5L12 7.5M15 8.5L15 8.5" />
</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 {HamburgerIcon} 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 HamburgerIcon = () => (
<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 11.5C5 11.5 3 11.5 3 13.5C3 15.5 5 15.5 5 15.5L19 15.5C19 15.5 21 15.5 21 13.5C21 11.5 19 11.5 19 11.5L5 11.5ZM4 15.5L4 17.5C4 17.5 4 19.5 6 19.5L18 19.5C20 19.5 20 17.5 20 17.5L20 15.5M4 11L4 9.5C4 9.5 4 4.5 11 4.5L13 4.5C20 4.5 20 9.5 20 9.5L20 11M9 8.5L9 8.5M12 7.5L12 7.5M15 8.5L15 8.5" />
</svg>
);
You can now use the icon component in your React application like any other React component.