UNPKG

@hyperlane-xyz/widgets

Version:

Common react components for Hyperlane projects

10 lines 1.33 kB
import React, { memo } from 'react'; import { ColorPalette } from '../color.js'; function _HyperlaneLogo({ color, ...rest }) { return (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 117 118", ...rest }, React.createElement("path", { d: "M64.4787 0H88.4134C91.6788 0 94.6004 1.89614 95.7403 4.7553L116.749 57.4498C116.911 57.8563 116.913 58.3035 116.754 58.7112L116.637 59.014L116.635 59.017L95.7152 112.81C94.5921 115.698 91.6551 117.62 88.3666 117.62H64.4355C63.0897 117.62 62.1465 116.379 62.59 115.192L84.1615 57.4498L62.6428 2.45353C62.1766 1.26188 63.1208 0 64.4787 0Z", fill: color || ColorPalette.Black }), React.createElement("path", { d: "M1.99945 0H25.9342C29.1996 0 32.1211 1.89614 33.261 4.7553L54.2696 57.4498C54.4316 57.8563 54.4336 58.3035 54.275 58.7112L54.1573 59.014L54.1561 59.017L33.236 112.81C32.1129 115.698 29.1759 117.62 25.8874 117.62H1.95626C0.610483 117.62 -0.332722 116.379 0.110804 115.192L21.6823 57.4498L0.163626 2.45353C-0.302638 1.26188 0.641544 0 1.99945 0Z", fill: color || ColorPalette.Black }), React.createElement("path", { d: "M80.7202 46.2178H46.9324V71.7089H80.7202L86.2411 58.5992L80.7202 46.2178Z", fill: color || ColorPalette.Black }))); } export const HyperlaneLogo = memo(_HyperlaneLogo); //# sourceMappingURL=Hyperlane.js.map