skull
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="M7 10.5C7 9.67157 7.67157 9 8.5 9C9.32843 9 10 9.67157 10 10.5C10 11.3284 9.32843 12 8.5 12C7.67157 12 7 11.3284 7 10.5ZM14 10.5C14 9.67157 14.6716 9 15.5 9C16.3284 9 17 9.67157 17 10.5C17 11.3284 16.3284 12 15.5 12C14.6716 12 14 11.3284 14 10.5ZM6 16L6 19C6 19 6 21 8 21L16 21C18 21 18 19 18 19L18 16C18 16 21 15 21 12C21 3 13 3 12 3C11 3 3 3 3 12C3 15 6 16 6 16ZM10 20L10 18M14 20L14 18" />
</svg>
Using with React
Install
@josemi-icons/react
and import the icon component in your React application:
import {SkullIcon} from "@josemi-icons/react";
const MyComponent = () => {
return (
<SkullIcon />
);
};
Using with CSS
Install
@josemi-icons/css
and include the icon as a CSS class:
<i class="ji-skull"></i>