@impossiblefinance/uikit
Version:
Set of UI components for impossible projects
13 lines (12 loc) • 328 B
TypeScript
import { SpaceProps } from 'styled-system';
export declare type RadioTheme = {
handleBackground: string;
};
export declare const scales: {
readonly SM: "sm";
readonly MD: "md";
};
export declare type Scales = typeof scales[keyof typeof scales];
export interface RadioProps extends SpaceProps {
scale?: Scales;
}