blowfish/node_modules/@heroicons/react/20/solid/EllipsisVerticalIcon.js

23 lines
715 B
JavaScript
Raw Normal View History

2023-01-29 16:30:24 -06:00
const React = require("react");
function EllipsisVerticalIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M10 3a1.5 1.5 0 110 3 1.5 1.5 0 010-3zM10 8.5a1.5 1.5 0 110 3 1.5 1.5 0 010-3zM11.5 15.5a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0z"
}));
}
const ForwardRef = React.forwardRef(EllipsisVerticalIcon);
module.exports = ForwardRef;