@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 1.3 kB
JavaScript
import * as React from "react";
import { forwardRef } from "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: "M16.766 4.735 13.2 3.436a3.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.82h3.796c.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.54Z"
}), /*#__PURE__*/React.createElement("path", {
d: "m12 17.435-5.155-3.093m5.156 3.093 5.458-3.093m-5.458 3.093v3.119m3.174-12.399H8.827m6.348 0 1.142 3.094 1.142 3.093m-2.284-6.187 1.395-1.492.698-.746.349-.373m-8.79 2.611-1.982 6.187m1.982-6.187L7.43 6.663l-.698-.746-.348-.373m.46 8.798-1.44 1.289-.72.644-.36.322m13.135-2.255 1.288 1.289.645.644.322.322",
opacity: 0.4
}));
const ForwardRef = forwardRef(D12Icon);
export default ForwardRef;