@lifi/widget
Version:
LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.
7 lines (6 loc) • 341 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { LiFiFullLogo, LiFiLogo as LiFiIconLogo } from '../icons';
export const LiFiLogo = ({ variant = 'icon', style }) => {
const Component = variant === 'icon' ? LiFiIconLogo : LiFiFullLogo;
return _jsx(Component, { style: style, fill: "currentColor", color: "currentColor" });
};