UNPKG

@swingby-protocol/widget

Version:

Small util to load Swingby's swap widget in your app.

13 lines (11 loc) 264 B
import type { Size } from './Size'; export const getHeight = ({ size }: { size: Size }) => { switch (size) { case 'banner': return `${76 / 16}rem`; case 'small': return `${375 / 16}rem`; case 'big': return `${510 / 16}rem`; } };