interface GroupInputProps {
    isDivided?: boolean;
    isFocused?: boolean;
    onBlur?: (() => void);
    widthMap?: {
        [key: number]: CSSProperties["width"];
    };
}

Properties

isDivided?: boolean
isFocused?: boolean
onBlur?: (() => void)
widthMap?: {
    [key: number]: CSSProperties["width"];
}