@solfacil/girassol
Version:
Girassol design system
16 lines (15 loc) • 345 B
TypeScript
export type ModelValue = Date | string | Date[] | string[];
export interface DatePicker {
id: string;
label?: string;
range?: boolean;
error?: string;
size?: 'small' | 'medium';
helperText?: string;
modelValue?: ModelValue;
placeholder?: string;
}
export interface Range {
text: string;
value?: number;
}