@sidekickicons/react
Version:
<p align="center"> <a href="https://heroicons.com" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/ndri/sidekickicons/HEAD/.github/logo-dark.svg"> <source media="(prefers-
22 lines • 1.78 kB
JavaScript
const React = require("react");
function DiceIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 16 16",
fill: "currentColor",
"aria-hidden": "true",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M2 5.357V11c0 .27.143.517.377.65l4.873 2.786V8.43Zm1.184 1.735c.283-.018.633.219.857.607.276.479.258 1.007-.041 1.18-.299.172-.765-.076-1.041-.555-.276-.478-.258-1.005.041-1.178a.416.416 0 0 1 .184-.054zm2.25 1.267c.283-.017.633.22.857.608.276.478.258 1.007-.041 1.18-.299.172-.765-.077-1.041-.555-.276-.478-.258-1.005.041-1.178a.416.416 0 0 1 .184-.055zm-2.25 1.233c.283-.018.633.219.857.607.276.479.258 1.007-.041 1.18-.299.172-.765-.076-1.041-.555-.276-.478-.258-1.005.041-1.178a.416.416 0 0 1 .184-.054zm2.25 1.267c.283-.017.633.22.857.608.276.478.258 1.007-.041 1.18-.299.172-.765-.077-1.041-.555-.276-.478-.258-1.005.041-1.178a.416.416 0 0 1 .184-.055zM14 5.357 8.75 8.43v6.006l4.873-2.786A.748.748 0 0 0 14 11ZM10.5 8.36a.432.432 0 0 1 .25.055c.299.173.317.7.041 1.178s-.742.727-1.041.554c-.299-.172-.317-.7-.041-1.18.207-.358.52-.587.791-.607Zm2.25 1.233a.432.432 0 0 1 .25.054c.299.173.317.7.041 1.178-.276.479-.742.727-1.041.555-.299-.173-.317-.701-.041-1.18.207-.359.52-.588.791-.607ZM8 1.25a.754.754 0 0 0-.373.1L2.818 4.098 8 7.13l5.182-3.033L8.373 1.35A.754.754 0 0 0 8 1.25Zm0 2.125A1 .625 0 0 1 9 4a1 .625 0 0 1-1 .625A1 .625 0 0 1 7 4a1 .625 0 0 1 1-.625Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(DiceIcon);
module.exports = ForwardRef;