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 3L21 21M8.03762 3.3277C9.20577 3.11917 10.5584 3 12 3C16.4183 3 20 4.11929 20 5.5C20 6.82945 16.6793 7.91653 12.4885 7.99542M7.49874 7.56702C5.38668 7.11699 4 6.3591 4 5.5C4 5.20976 4.15828 4.93106 4.44933 4.67189M19.2523 19.5567C17.9781 20.4093 15.2098 21 12 21C7.58172 21 4 19.8807 4 18.5C4 17.1193 4 6 4 6M20 6C20 6 20 13.6193 20 15M14.4148 14.3841C13.6529 14.4594 12.8416 14.5 12 14.5C7.58172 14.5 4 13.3807 4 12M20 12C20 12.6422 19.2252 13.2278 17.9517 13.6706" />
</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 {DatabaseSlashIcon} 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 DatabaseSlashIcon = () => (
<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 3L21 21M8.03762 3.3277C9.20577 3.11917 10.5584 3 12 3C16.4183 3 20 4.11929 20 5.5C20 6.82945 16.6793 7.91653 12.4885 7.99542M7.49874 7.56702C5.38668 7.11699 4 6.3591 4 5.5C4 5.20976 4.15828 4.93106 4.44933 4.67189M19.2523 19.5567C17.9781 20.4093 15.2098 21 12 21C7.58172 21 4 19.8807 4 18.5C4 17.1193 4 6 4 6M20 6C20 6 20 13.6193 20 15M14.4148 14.3841C13.6529 14.4594 12.8416 14.5 12 14.5C7.58172 14.5 4 13.3807 4 12M20 12C20 12.6422 19.2252 13.2278 17.9517 13.6706" />
</svg>
);
You can now use the icon component in your React application like any other React component.