mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-02-02 19:42:34 -06:00
23 lines
719 B
JavaScript
23 lines
719 B
JavaScript
|
const React = require("react");
|
||
|
|
||
|
function EllipsisHorizontalIcon({
|
||
|
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: "M3 10a1.5 1.5 0 113 0 1.5 1.5 0 01-3 0zM8.5 10a1.5 1.5 0 113 0 1.5 1.5 0 01-3 0zM15.5 8.5a1.5 1.5 0 100 3 1.5 1.5 0 000-3z"
|
||
|
}));
|
||
|
}
|
||
|
|
||
|
const ForwardRef = React.forwardRef(EllipsisHorizontalIcon);
|
||
|
module.exports = ForwardRef;
|