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 10L5 6C5 6 5 3 8 3L16 3C19 3 19 6 19 6L19 10M2 14C2 12.5 3.5 11 5 11C6.5 11 8 12 8 14L8 20C8 20 8 21 7 21L6 21C5 21 5 20 5 20L5 17C3.32295 17 2 15.5 2 14ZM22 14C22 12.5 20.5 11 19 11C17.5 11 16 12 16 14L16 20C16 20 16 21 17 21L18 21C19 21 19 20 19 20L19 17C20.6771 17 22 15.5 22 14ZM8 20L16 20M8 15L16 15" />
</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 {ArmchairIcon} 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 ArmchairIcon = () => (
<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 10L5 6C5 6 5 3 8 3L16 3C19 3 19 6 19 6L19 10M2 14C2 12.5 3.5 11 5 11C6.5 11 8 12 8 14L8 20C8 20 8 21 7 21L6 21C5 21 5 20 5 20L5 17C3.32295 17 2 15.5 2 14ZM22 14C22 12.5 20.5 11 19 11C17.5 11 16 12 16 14L16 20C16 20 16 21 17 21L18 21C19 21 19 20 19 20L19 17C20.6771 17 22 15.5 22 14ZM8 20L16 20M8 15L16 15" />
</svg>
);
You can now use the icon component in your React application like any other React component.