UNPKG

@astraicons/react

Version:

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

29 lines 1.35 kB
import * as React from "react"; import { forwardRef } from "react"; const ConvertIcon = ({ 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", { strokeLinecap: "round", strokeLinejoin: "round", d: "M16.25 4.255s2.78-.524 4 1c.976 1.22 1 2 1 2m-4-1.005-2-2 2-2M8.25 20.25s-2.78.525-4-1c-.976-1.22-1-2-1-2m4 1.005 2 2-2 2", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M3 4.255h1.5m-1.5 7h1.5M6.5 2v1.5m0 8.5v1.5M4.75 4.25v7h3.111c.86 0 1.556-.696 1.556-1.556v-.388c0-.86-.697-1.556-1.556-1.556H4.983l2.9-.04a1.556 1.556 0 0 0 1.534-1.556v-.348c0-.86-.697-1.556-1.556-1.556zM20.75 14.917v-.459c0-1.012-.82-1.833-1.833-1.833h-1.834c-1.012 0-1.833.82-1.833 1.833v.28c0 .897.648 1.662 1.532 1.809l2.436.406a1.83 1.83 0 0 1 1.532 1.808v.28c0 1.013-.82 1.834-1.833 1.834h-1.834a1.833 1.833 0 0 1-1.833-1.833v-.459M18 11.25v11" })); const ForwardRef = forwardRef(ConvertIcon); export default ForwardRef;