UNPKG

@astraicons/react

Version:

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

22 lines 1.23 kB
const React = require("react"); const { forwardRef } = require("react"); const D12Icon = ({ 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: "m12 17.435-5.155-3.093M12 17.435l5.459-3.093M12 17.435v3.119m3.174-12.399H8.826m6.348 0 1.143 3.094 1.142 3.093m-2.285-6.187 1.396-1.492.697-.746.35-.373m-8.79 2.611-1.982 6.187m1.981-6.187L7.431 6.663l-.698-.746-.349-.373m.46 8.798-1.44 1.289-.72.644-.36.323m13.135-2.256 1.289 1.289.644.644.323.323M12 21h1.898c.824 0 1.622-.29 2.253-.82l2.908-2.44a3.5 3.5 0 0 0 1.2-2.077l.658-3.738a3.5 3.5 0 0 0-.416-2.361l-1.899-3.29a3.5 3.5 0 0 0-1.836-1.54L13.2 3.437a3.5 3.5 0 0 0-2.398 0L7.234 4.735a3.5 3.5 0 0 0-1.837 1.541L3.5 9.563a3.5 3.5 0 0 0-.416 2.362l.659 3.738a3.5 3.5 0 0 0 1.2 2.077l2.907 2.44c.631.53 1.43.82 2.253.82z" })); const ForwardRef = forwardRef(D12Icon); module.exports = ForwardRef;