@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 997 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const D10Icon = ({
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: "M9.608 3.88a3.49 3.49 0 0 1 4.633 0l5.492 4.861a3.57 3.57 0 0 1 1.195 2.487l.067 1.277a3.57 3.57 0 0 1-1.212 2.877l-5.44 4.753a3.49 3.49 0 0 1-4.6 0l-5.526-4.828A3.57 3.57 0 0 1 3 12.617v-1.275c0-1.025.437-2 1.2-2.675z"
}), /*#__PURE__*/React.createElement("path", {
d: "M12 21v-3m0 0-5.21-1.78M12 18l5.714-2M20 15l-2.286 1M4 15l2.79 1.22m0 0 5.123-12.506a.1.1 0 0 1 .183-.004L17.714 16",
opacity: 0.4
}));
const ForwardRef = forwardRef(D10Icon);
export default ForwardRef;