styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
26 lines (25 loc) • 1.66 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.Calculator = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__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" })));
});
exports.Calculator.displayName = 'Calculator';
exports.CalculatorDimensions = { height: 24, width: 24 };