UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

41 lines (39 loc) 1.05 kB
import * as React from "react"; const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function SquareWhiteLargeIcon({ title, titleId, size, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 72 72", fill: "currentColor", "aria-hidden": "true", ref: svgRef, width: size ? typeof size === "string" ? sizeMap[size] : size : "16px", "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fill: "#fff", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M11 10.937h50v50H11z" }), /*#__PURE__*/React.createElement("path", { fill: "none", stroke: "#000", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M11 10.937h50v50H11z" })); } const ForwardRef = React.forwardRef(SquareWhiteLargeIcon); export default ForwardRef;