UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.5 kB
import React, { forwardRef, memo } from "react"; import { AccessibleIcon } from "../accessible-icon"; import { StyledSvg, StyledPath } from "../styles"; import { jsx as _jsx } from "react/jsx-runtime"; const StyledEllipsisRegular = ({ label, color = "#000000", className = "", css = {}, viewBox = "0 0 24 24" }, ref) => { return /*#__PURE__*/_jsx(AccessibleIcon, { label: label, children: /*#__PURE__*/_jsx(StyledSvg, { className: className, css: css, viewBox: viewBox, xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", ref: ref, children: /*#__PURE__*/_jsx(StyledPath, { css: { fill: `${color}` }, d: "M18 11.5717C18 10.152 19.1518 9.00024 20.5715 9.00024C21.9911 9.00024 23.1429 10.152 23.1429 11.5717C23.1429 12.9913 21.9911 14.1431 20.5715 14.1431C19.1518 14.1431 18 12.9913 18 11.5717ZM9.42861 11.5717C9.42861 10.152 10.5804 9.00024 12 9.00024C13.4197 9.00024 14.5715 10.152 14.5715 11.5717C14.5715 12.9913 13.4197 14.1431 12 14.1431C10.5804 14.1431 9.42861 12.9913 9.42861 11.5717ZM6.00003 11.5717C6.00003 12.9913 4.84878 14.1431 3.42861 14.1431C2.00843 14.1431 0.857178 12.9913 0.857178 11.5717C0.857178 10.152 2.00843 9.00024 3.42861 9.00024C4.84878 9.00024 6.00003 10.152 6.00003 11.5717Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledEllipsisRegular); const EllipsisRegular = /*#__PURE__*/memo(ForwardRef); export default EllipsisRegular;