UNPKG

@nomercyicons/react

Version:
24 lines 1.21 kB
const React = require("react"); function BloggerColorIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 45 45", 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: "#FF6500", fillRule: "evenodd", d: "M30.513 33.303H14.44c-1.51 0-2.732-1.233-2.732-2.706 0-1.489 1.223-2.707 2.732-2.707h16.072a2.72 2.72 0 012.715 2.707c0 1.473-1.222 2.706-2.715 2.706M14.44 11.623h7.908c1.509 0 2.731 1.217 2.731 2.705a2.735 2.735 0 01-2.731 2.721h-7.908a2.735 2.735 0 01-2.732-2.72c0-1.489 1.223-2.706 2.732-2.706m29.411 5.788c-.95-.407-5.024.045-6.156-.978-.8-.736-.85-2.07-1.162-3.848-.522-2.979-.74-3.654-1.283-4.827C33.275 3.578 28.538 0 24.235 0H14.26C6.412 0 0 6.405 0 14.223v16.584C0 38.61 6.412 45 14.26 45h16.388c7.848 0 14.217-6.39 14.262-14.193L45 19.32s0-1.42-1.148-1.91" })); } const ForwardRef = React.forwardRef(BloggerColorIcon); module.exports = ForwardRef;