UNPKG

@onethousandswaps-libs/uikit

Version:

User interface package for One THousand Swaps apps

14 lines (11 loc) 273 B
export const variants = { ROUND: "round", FLAT: "flat", } as const; export type Variant = typeof variants[keyof typeof variants]; export interface ProgressProps { variant?: Variant; primaryStep?: number; secondaryStep?: number; showProgressBunny?: boolean; }