@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.47 kB
JavaScript
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 StyledEllipsisVerticalRegular = ({
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: "M11.7692 18.4615C13.2987 18.4615 14.5385 19.7019 14.5385 21.2308C14.5385 22.7596 13.2987 24 11.7692 24C10.2398 24 9 22.7596 9 21.2308C9 19.7019 10.2398 18.4615 11.7692 18.4615ZM11.7692 9.23077C13.2987 9.23077 14.5385 10.4712 14.5385 12C14.5385 13.5288 13.2987 14.7692 11.7692 14.7692C10.2398 14.7692 9 13.5288 9 12C9 10.4712 10.2398 9.23077 11.7692 9.23077ZM11.7692 5.53846C10.2398 5.53846 9 4.29808 9 2.76923C9 1.23981 10.2398 0 11.7692 0C13.2987 0 14.5385 1.23981 14.5385 2.76923C14.5385 4.29808 13.2987 5.53846 11.7692 5.53846Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledEllipsisVerticalRegular);
const EllipsisVerticalRegular = /*#__PURE__*/memo(ForwardRef);
export default EllipsisVerticalRegular;