josemi / icons
v0.7.0
bubbles
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="M12 19.5C12 18.6716 12.6716 18 13.5 18C14.3284 18 15 18.6716 15 19.5C15 20.3284 14.3284 21 13.5 21C12.6716 21 12 20.3284 12 19.5ZM3 13C3 11.3431 4.34315 10 6 10C7.65685 10 9 11.3431 9 13C9 14.6569 7.65685 16 6 16C4.34315 16 3 14.6569 3 13ZM11 8C11 5.23858 13.2386 3 16 3C18.7614 3 21 5.23858 21 8C21 10.7614 18.7614 13 16 13C13.2386 13 11 10.7614 11 8Z" />
</svg>
Using with React
Install @josemi-icons/react and import the icon component in your React application:
import {BubblesIcon} from "@josemi-icons/react";

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