lollipop
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="M3 21L8 16M6 10.5C6 6.35786 9.35786 3 13.5 3C17.6421 3 21 6.35786 21 10.5C21 14.6421 17.6421 18 13.5 18C9.35786 18 6 14.6421 6 10.5ZM13 11C12 11 12 12 12 12C12 14 14 14 14 14C17 14 17 11 17 11C17 7 13 7 13 7C8 7 8 12 8 12C8 18 14 18 14 18" />
</svg>
Using with React
Install
@josemi-icons/react
and import the icon component in your React application:
import {LollipopIcon} from "@josemi-icons/react";
const MyComponent = () => {
return (
<LollipopIcon />
);
};
Using with CSS
Install
@josemi-icons/css
and include the icon as a CSS class:
<i class="ji-lollipop"></i>