UNPKG

optimall-icons

Version:

Biblioteca de ícones do Optimall

27 lines 1.16 kB
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); } import React, { forwardRef } from 'react'; export const MoreIcon = /*#__PURE__*/forwardRef(({ className, style, ariaLabel, size = 24, width, height, ...props }, ref) => { const iconSize = width || height || size; return /*#__PURE__*/React.createElement("svg", _extends({ ref: ref, className: className, "aria-label": ariaLabel || "more", style: style, width: width || iconSize, height: height || iconSize, viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg" }, props), /*#__PURE__*/React.createElement("path", { d: "M12 4.75a1.25 1.25 0 1 0 0 2.5h.009a1.25 1.25 0 1 0 0-2.5H12ZM10.742 12c0-.69.56-1.25 1.25-1.25h.01a1.25 1.25 0 0 1 0 2.5h-.01c-.69 0-1.25-.56-1.25-1.25Zm-.008 6c0-.69.56-1.25 1.25-1.25h.01a1.25 1.25 0 0 1 0 2.5h-.01c-.69 0-1.25-.56-1.25-1.25Z" })); }); export default MoreIcon;