@nomercyicons/react
Version:
24 lines • 1.32 kB
JavaScript
const React = require("react");
function BlackberryIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 34",
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: "#0B0B0A",
fillRule: "evenodd",
d: "M15.467 3.63c0 2.275-1.464 4.721-6.605 4.721H2.278L4.074 0h6.315c4.102 0 5.078 2.028 5.078 3.63zm17.012 0c0 2.275-1.461 4.721-6.604 4.72h-6.58L21.089 0h6.317c4.1 0 5.073 2.028 5.073 3.63zM13.19 16.2c0 2.267-1.466 4.72-6.607 4.72H0l1.795-8.356h6.316c4.101 0 5.077 2.033 5.077 3.635zm17.012 0c0 2.267-1.462 4.72-6.604 4.72h-6.585l1.798-8.356h6.316c4.098 0 5.075 2.033 5.075 3.635zM48 11.101c0 2.273-1.464 4.72-6.607 4.72h-6.581l1.798-8.355h6.315c4.098 0 5.075 2.032 5.075 3.635zm-2.454 13.086c0 2.268-1.462 4.721-6.604 4.721h-6.581l1.795-8.351h6.316c4.1 0 5.074 2.027 5.074 3.63zm-17.79 5.099c0 2.268-1.461 4.714-6.604 4.713H14.57l1.796-8.355h6.319c4.098 0 5.071 2.032 5.071 3.642z"
}));
}
const ForwardRef = React.forwardRef(BlackberryIcon);
module.exports = ForwardRef;