UNPKG

@onethousandswaps-libs/uikit

Version:

User interface package for One THousand Swaps apps

39 lines (36 loc) 733 B
import { scales, variants } from "./types"; export const scaleVariants = { [scales.MD]: { height: "28px", padding: "0 8px", fontSize: "14px", }, [scales.SM]: { height: "24px", padding: "0 4px", fontSize: "12px", }, }; export const styleVariants = { [variants.PRIMARY]: { backgroundColor: "primary", }, [variants.SECONDARY]: { backgroundColor: "secondary", }, [variants.SUCCESS]: { backgroundColor: "success", }, [variants.TEXTDISABLED]: { backgroundColor: "textDisabled", }, [variants.TEXTSUBTLE]: { backgroundColor: "textSubtle", }, [variants.BINANCE]: { backgroundColor: "binance", }, [variants.FAILURE]: { backgroundColor: "failure", }, };