@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.46 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 StyledEllipsisVerticalSolid = ({
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: "M12.1111 17.7778C13.8294 17.7778 15.2222 19.1722 15.2222 20.8889C15.2222 22.6056 13.8294 24 12.1111 24C10.3928 24 9 22.6056 9 20.8889C9 19.1722 10.3928 17.7778 12.1111 17.7778ZM12.1111 8.88889C13.8294 8.88889 15.2222 10.2833 15.2222 12C15.2222 13.7167 13.8294 15.1111 12.1111 15.1111C10.3928 15.1111 9 13.7167 9 12C9 10.2833 10.3928 8.88889 12.1111 8.88889ZM12.1111 6.22222C10.3928 6.22222 9 4.82778 9 3.11111C9 1.39278 10.3928 0 12.1111 0C13.8294 0 15.2222 1.39278 15.2222 3.11111C15.2222 4.82778 13.8294 6.22222 12.1111 6.22222Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledEllipsisVerticalSolid);
const EllipsisVerticalSolid = /*#__PURE__*/memo(ForwardRef);
export default EllipsisVerticalSolid;