UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

20 lines (19 loc) 1.08 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var DialpadAlt = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("circle", { cx: 12, cy: 6, r: 2, key: "k0" }), React.createElement("circle", { cx: 6, cy: 6, r: 2, key: "k1" }), React.createElement("circle", { cx: 18, cy: 6, r: 2, key: "k2" }), React.createElement("circle", { cx: 12, cy: 12, r: 2, key: "k3" }), React.createElement("circle", { cx: 6, cy: 12, r: 2, key: "k4" }), React.createElement("circle", { cx: 18, cy: 12, r: 2, key: "k5" }), React.createElement("circle", { cx: 12, cy: 18, r: 2, key: "k6" }))); }); DialpadAlt.displayName = 'DialpadAlt'; export var DialpadAltDimensions = { height: 24, width: 24 };