UNPKG

@unstoppabledomains/ui-kit

Version:

A set of common Unstoppable Domains components

24 lines 1.13 kB
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } import SvgIcon from '@mui/material/SvgIcon'; import React from 'react'; const Ripple = /*#__PURE__*/React.forwardRef(({ iconRef, ...props }, ref) => { return /*#__PURE__*/React.createElement(SvgIcon, _extends({ viewBox: "0 0 32 32" }, props, { ref: iconRef || ref }), /*#__PURE__*/React.createElement("g", { fill: "none" }, /*#__PURE__*/React.createElement("circle", { cx: "16", cy: "16", r: "16", fill: "#23292F" }), /*#__PURE__*/React.createElement("path", { d: "M23.07 8h2.89l-6.015 5.957a5.621 5.621 0 01-7.89 0L6.035 8H8.93l4.57 4.523a3.556 3.556 0 004.996 0L23.07 8zM8.895 24.563H6l6.055-5.993a5.621 5.621 0 017.89 0L26 24.562h-2.895L18.5 20a3.556 3.556 0 00-4.996 0l-4.61 4.563z", fill: "#FFF" }))); }); export default Ripple;