UNPKG

@astraicons/react

Version:

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

20 lines 1.25 kB
const React = require("react"); const { forwardRef } = require("react"); const RouletteIcon = ({ 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: "M17.25 21a.75.75 0 0 1 0 1.5H6.75a.75.75 0 0 1 0-1.5H9v-1.877a8 8 0 0 1-.917-.417l3.337-5.02a2.75 2.75 0 0 1-1.103-.511l-3.253 4.894a8.37 8.37 0 0 1-3.39-5.914q-.011-.12-.019-.243h5.751a2.74 2.74 0 0 1-.14-1.2H3.655a8.37 8.37 0 0 1 3.464-6.197l2.947 4.532a2.7 2.7 0 0 1 1.017-.637L8.141 3.886a8.4 8.4 0 0 1 1.775-.678l-.276-.843a.85.85 0 0 1 .806-1.115h3.117a.85.85 0 0 1 .817 1.083l-.254.886a8.4 8.4 0 0 1 1.731.667L12.916 8.41c.35.124.682.32.969.591l.003.002.046.042 2.946-4.531a8.37 8.37 0 0 1 3.467 6.197h-5.613c.043.4-.002.809-.14 1.2h5.753q-.01.136-.023.273a8.37 8.37 0 0 1-2.728 5.351 8 8 0 0 1-.662.533l-3.254-4.892a2.75 2.75 0 0 1-1.102.51l3.338 5.018a8 8 0 0 1-.916.417V21z" })); const ForwardRef = forwardRef(RouletteIcon); module.exports = ForwardRef;