@hyperlane-xyz/widgets
Version:
Common react components for Hyperlane projects
9 lines • 638 B
JavaScript
import React, { memo } from 'react';
import { ColorPalette } from '../color.js';
function _CopyIcon({ color, ...rest }) {
return (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 21 21", ...rest },
React.createElement("rect", { x: "1", y: "7", width: "13", height: "13", rx: "1", stroke: color || ColorPalette.Black, strokeWidth: "2.1", fill: "none" }),
React.createElement("rect", { x: "7", y: "1", width: "13", height: "13", rx: "1", stroke: color || ColorPalette.Black, strokeWidth: "2.1", fill: "none" })));
}
export const CopyIcon = memo(_CopyIcon);
//# sourceMappingURL=Copy.js.map