@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.22 kB
JavaScript
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",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M11.25 17.809v3.872a4.3 4.3 0 0 1-1.432-.537l-4.407-2.637a4.4 4.4 0 0 1-1.337-1.25zM19.925 17.258c-.35.499-.8.928-1.336 1.249l-4.407 2.637c-.45.27-.935.447-1.432.537v-3.872zM10.715 16.263l-5.433-.417 2.694-4.377zM18.717 15.846l-5.433.417 2.74-4.793zM7.028 10.147l-3.58 5.819a4.6 4.6 0 0 1-.198-1.328V9.362c0-.736.178-1.45.501-2.083zM20.248 7.28c.324.633.502 1.346.502 2.082v5.276c0 .456-.07.902-.198 1.327l-3.581-5.818zM12 15.487 9.293 10.75h5.414zM14.648 9.25H9.282l2.541-4.519zM13.132 2.404c.363.101.716.252 1.05.451l4.407 2.638q.415.25.76.58l-3.181 2.781-3.508-5.612zM10.917 3.282l-3.12 5.544L4.65 6.072a4.4 4.4 0 0 1 .761-.579l4.407-2.638q.31-.183.638-.311z"
}));
const ForwardRef = forwardRef(D20Icon);
export default ForwardRef;