feat(interface/input): add size to input dialog options (#32)

This commit is contained in:
Luca
2025-07-26 22:34:01 +10:00
committed by GitHub
parent fd8d65166b
commit 301ff2daf8
3 changed files with 3 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ export interface InputProps {
rows: Array<IInput | ICheckbox | ISelect | INumber | ISlider | IColorInput | IDateInput | ITextarea | ITimeInput>;
options?: {
allowCancel?: boolean;
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
};
}