UNPKG

@astraicons/react

Version:

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

37 lines 1.51 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", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "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.355 5.18-.917-2.786A.3.3 0 0 1 10.723 2h2.574a.3.3 0 0 1 .289.382l-.375 1.311-.421 1.476a.3.3 0 0 1-.288.217h-.862a.3.3 0 0 1-.285-.206Z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M13.414 9.586a2 2 0 1 1-2.828 2.828 2 2 0 0 1 2.828-2.828" }), /*#__PURE__*/React.createElement("path", { d: "M11.155 9.62 7.925 4.54M12.85 9.619l3.228-5.08M11.155 13.006l-3.23 5.08M12.848 13.006l3.23 5.08", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M7 21.5h10" }), /*#__PURE__*/React.createElement("path", { d: "M4.5 11.313h5.386M14.12 11.313h5.502", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { d: "M10.384 3a8 8 0 0 0-4.833 3.133 8.145 8.145 0 0 0 1.08 10.775A7.95 7.95 0 0 0 11.985 19a7.95 7.95 0 0 0 5.363-2.073 8.146 8.146 0 0 0 1.116-10.772 8 8 0 0 0-4.821-3.15M9 18v3m6-3v3" })); const ForwardRef = forwardRef(RouletteIcon); module.exports = ForwardRef;