@onethousandswaps-libs/uikit
Version:
User interface package for One THousand Swaps apps
38 lines (29 loc) • 759 B
text/typescript
import { InputHTMLAttributes } from "react";
export type ToggleTheme = {
handleBackground: string;
};
export const scales = {
SM: "sm",
MD: "md",
} as const;
export type Scales = typeof scales[keyof typeof scales];
export interface ToggleProps extends InputHTMLAttributes<HTMLInputElement> {
scale?: Scales;
checked?: boolean;
}
export interface HandleProps {
scale: Scales;
}
export interface InputProps {
scale: Scales;
}
export const scaleKeys = {
handleHeight: "handleHeight",
handleWidth: "handleWidth",
handleLeft: "handleLeft",
handleTop: "handleTop",
checkedLeft: "checkedLeft",
toggleHeight: "toggleHeight",
toggleWidth: "toggleWidth",
} as const;
export type ScaleKeys = typeof scaleKeys[keyof typeof scaleKeys];