UNPKG

styled-icons

Version:

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

24 lines (23 loc) 1.53 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Calculator = 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("path", { d: "M17 21H9c-1.7 0-3-1.3-3-3V6c0-1.7 1.3-3 3-3h8c1.7 0 3 1.3 3 3v12c0 1.7-1.3 3-3 3zM9 5c-.6 0-1 .4-1 1v12c0 .6.4 1 1 1h8c.6 0 1-.4 1-1V6c0-.6-.4-1-1-1H9z", key: "k0" }), React.createElement("circle", { cx: 10, cy: 11, r: 1, key: "k1" }), React.createElement("circle", { cx: 13, cy: 11, r: 1, key: "k2" }), React.createElement("circle", { cx: 16, cy: 11, r: 1, key: "k3" }), React.createElement("circle", { cx: 10, cy: 14, r: 1, key: "k4" }), React.createElement("circle", { cx: 13, cy: 14, r: 1, key: "k5" }), React.createElement("circle", { cx: 16, cy: 14, r: 1, key: "k6" }), React.createElement("circle", { cx: 10, cy: 17, r: 1, key: "k7" }), React.createElement("circle", { cx: 13, cy: 17, r: 1, key: "k8" }), React.createElement("circle", { cx: 16, cy: 17, r: 1, key: "k9" }), React.createElement("path", { d: "M16 7v1h-6V7h6m1-1H9v3h8V6z", key: "k10" }))); }); Calculator.displayName = 'Calculator'; export var CalculatorDimensions = { height: 24, width: 24 };