UNPKG

@astraicons/react

Version:

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

23 lines 1.37 kB
import * as React from "react"; function SoloToIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M13.795 10.923c-.045-.341-.363-.568-.727-.523-.34.045-.568.386-.523.727.046.25.069.5.069.773 0 2.591-2.091 4.682-4.682 4.682A4.675 4.675 0 0 1 3.25 11.9a4.69 4.69 0 0 1 4.682-4.682 4.5 4.5 0 0 1 2.09.5c.319.16.682.023.842-.272a.63.63 0 0 0-.273-.841 5.9 5.9 0 0 0-2.66-.614C4.682 5.968 2 8.627 2 11.901c0 3.272 2.682 5.93 5.932 5.93s5.932-2.658 5.932-5.93c0-.32-.023-.66-.069-.978" }), /*#__PURE__*/React.createElement("path", { d: "M16.068 5.968a5.936 5.936 0 0 0-5.932 5.932q0 .477.069.955c.045.34.363.568.727.522.34-.045.568-.386.523-.704a4 4 0 0 1-.069-.75c0-2.591 2.091-4.682 4.682-4.682s4.682 2.09 4.682 4.682c0 2.59-2.09 4.682-4.682 4.682a4.5 4.5 0 0 1-2.09-.5.63.63 0 0 0-.841.272.63.63 0 0 0 .272.841 5.9 5.9 0 0 0 2.66.614A5.936 5.936 0 0 0 22 11.9c-.023-3.273-2.682-5.932-5.932-5.932" })); } const ForwardRef = React.forwardRef(SoloToIcon); export default ForwardRef;