@nomercyicons/react
Version:
24 lines • 866 B
JavaScript
import * as React from "react";
function TrelloColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 48",
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: "#007AC2",
fillRule: "evenodd",
d: "M6 9v27a3 3 0 003 3h9a3 3 0 003-3V9a3 3 0 00-3-3H9a3 3 0 00-3 3zm21 0v15a3 3 0 003 3h9a3 3 0 003-3V9a3 3 0 00-3-3h-9a3 3 0 00-3 3zM6 0C2.686 0 0 2.688 0 6v36c0 3.313 2.688 6 6 6h36c3.314 0 6-2.688 6-6V6c0-3.313-2.688-6-6-6H6z"
}));
}
const ForwardRef = React.forwardRef(TrelloColorIcon);
export default ForwardRef;