UNPKG

@astraicons/react

Version:

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

25 lines 1.01 kB
import * as React from "react"; import { forwardRef } from "react"; const D20Icon = ({ 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: "M10.204 3.499a3.48 3.48 0 0 1 3.592 0l4.408 2.638C19.315 6.802 20 8.032 20 9.362v5.276c0 1.33-.685 2.56-1.796 3.225l-4.408 2.638a3.48 3.48 0 0 1-3.592 0l-4.408-2.638C4.685 17.198 4 15.97 4 14.638V9.362c0-1.33.685-2.56 1.796-3.225z" }), /*#__PURE__*/React.createElement("path", { d: "m12 3.5 4 6.5m0 0 3-2.331m-3 2.33H8m8 0-4 7-4-7m8 0 3 6-7 1.115M8 10l-3 6 7 1.114M8 10l4-6m-4 6L5 7.6m7 9.514v3.988", opacity: 0.4 })); const ForwardRef = forwardRef(D20Icon); export default ForwardRef;