UNPKG

@onethousandswaps-libs/uikit

Version:

User interface package for One THousand Swaps apps

11 lines (8 loc) 172 B
export const scales = { SM: "sm", MD: "md", } as const; export type Scales = typeof scales[keyof typeof scales]; export interface CheckboxProps { scale?: Scales; }