josemi / icons
v0.7.0
dialpad
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="M3 3L3 7L7 7L7 3L3 3ZM10 3L10 7L14 7L14 3L10 3ZM17 3L17 7L21 7L21 3L17 3ZM3 10L3 14L7 14L7 10L3 10ZM10 10L10 14L14 14L14 10L10 10ZM17 10L17 14L21 14L21 10L17 10ZM10 17L10 21L14 21L14 17L10 17Z" />
</svg>
Using with React
Install @josemi-icons/react and import the icon component in your React application:
import {DialpadIcon} from "@josemi-icons/react";

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