@heroicons/react
Version:
13 lines (11 loc) • 427 B
JavaScript
const React = require("react");
function DotsVerticalIcon(props) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M10 6a2 2 0 110-4 2 2 0 010 4zM10 12a2 2 0 110-4 2 2 0 010 4zM10 18a2 2 0 110-4 2 2 0 010 4z"
}));
}
module.exports = DotsVerticalIcon;