@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 925 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const D6Icon = ({
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.384 12.463v9.292a4.3 4.3 0 0 1-1.592-.567l-4.407-2.637c-1.361-.815-2.186-2.31-2.186-3.913V9.363c0-.508.083-1.006.24-1.475zM20.562 7.896c.155.466.237.961.237 1.467v5.275c0 1.603-.825 3.098-2.186 3.912l-4.407 2.638a4.3 4.3 0 0 1-1.222.494v-9.23zM9.792 2.813a4.28 4.28 0 0 1 4.414 0l4.407 2.638c.46.275.858.63 1.184 1.038l-7.622 4.583-7.97-4.589a4.4 4.4 0 0 1 1.18-1.032z"
}));
const ForwardRef = forwardRef(D6Icon);
export default ForwardRef;