UNPKG

@nomercyicons/react

Version:
24 lines 861 B
import * as React from "react"; function TrelloIcon({ 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: "currentColor", 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(TrelloIcon); export default ForwardRef;