UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

38 lines 1.31 kB
import * as React from "react"; import { forwardRef } from "react"; const CalculatorIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M16.5 6h-9A1.5 1.5 0 0 0 6 7.5v1A1.5 1.5 0 0 0 7.5 10h9A1.5 1.5 0 0 0 18 8.5v-1A1.5 1.5 0 0 0 16.5 6Z", opacity: 0.4 }), /*#__PURE__*/React.createElement("rect", { width: 18, height: 18, x: 3, y: 3, rx: 4.5 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M6.765 13.235a.375.375 0 1 1-.532.53.375.375 0 0 1 .532-.53M6.765 17.235a.375.375 0 1 1-.532.53.375.375 0 0 1 .532-.53M10.765 13.235a.375.375 0 1 1-.532.53.375.375 0 0 1 .532-.53M10.765 17.235a.375.375 0 1 1-.532.53.375.375 0 0 1 .532-.53", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M15 18h2M15 14h2m-1 1v-2", opacity: 0.4 })); const ForwardRef = forwardRef(CalculatorIcon); export default ForwardRef;