dbl-components
Version:
Framework based on bootstrap 5
17 lines (16 loc) • 407 B
TypeScript
export default class SwitchField extends CheckboxField {
static defaultProps: {
format: string;
inline: boolean;
labelInline: boolean;
type: string;
default: string;
value: string;
first: string;
floating: boolean;
classes: string;
style: {};
active: boolean;
};
}
import CheckboxField from "./checkbox-field";