@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.
11 lines • 391 B
JavaScript
import { defaultMaxHeight } from '../config/constants';
export const getWidgetMaxHeight = (theme) => {
if (theme?.container?.maxHeight) {
return theme?.container?.maxHeight;
}
if (theme?.container?.height && theme?.container?.height !== 'fit-content') {
return theme?.container?.height;
}
return defaultMaxHeight;
};
//# sourceMappingURL=widgetSize.js.map