@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 919 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const D8Icon = ({
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: "M20.291 16.75a4.46 4.46 0 0 1-1.676 1.8l-4.407 2.639a4.28 4.28 0 0 1-4.414 0L5.387 18.55A4.46 4.46 0 0 1 3.71 16.75zm-1.122-1.5H4.835l7.166-11.804zm-15.95-.23a5 5 0 0 1-.018-.381V9.363c0-1.602.825-3.097 2.186-3.912l4.407-2.638c.356-.213.735-.37 1.124-.472zm9.867-12.678c.388.102.766.258 1.122.471l4.407 2.638c1.361.815 2.186 2.31 2.186 3.912v5.276q-.001.19-.018.379z"
}));
const ForwardRef = forwardRef(D8Icon);
export default ForwardRef;