UNPKG

@nomercyicons/react

Version:
36 lines 1.08 kB
const React = require("react"); function FormatListBulletedTwoToneIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "none", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fill: "none", d: "M0 0h24v24H0V0z" }), /*#__PURE__*/React.createElement("path", { d: "M7 5h14v2H7z" }), /*#__PURE__*/React.createElement("circle", { cx: 4, cy: 6, r: 1.5 }), /*#__PURE__*/React.createElement("path", { d: "M7 11h14v2H7zm0 6h14v2H7zm-3 2.5c.82 0 1.5-.68 1.5-1.5s-.67-1.5-1.5-1.5-1.5.68-1.5 1.5.68 1.5 1.5 1.5z" }), /*#__PURE__*/React.createElement("circle", { cx: 4, cy: 12, r: 1.5 })); } const ForwardRef = React.forwardRef(FormatListBulletedTwoToneIcon); module.exports = ForwardRef;