Interface ExhibitComponents

interface ExhibitComponents {
    SmartInputField?: {
        defaultProps?: SmartInputFieldProps;
        styleOverrides?: any;
        variants?: {
            props: Partial<SmartInputFieldProps>;
            style: Interpolation<{
                theme: Theme;
            }>;
        }[];
    };
}

Hierarchy

  • Components<Omit<Theme, "components">>
    • ExhibitComponents

Properties

Properties

SmartInputField?: {
    defaultProps?: SmartInputFieldProps;
    styleOverrides?: any;
    variants?: {
        props: Partial<SmartInputFieldProps>;
        style: Interpolation<{
            theme: Theme;
        }>;
    }[];
}

Type declaration

  • Optional defaultProps?: SmartInputFieldProps
  • Optional styleOverrides?: any
  • Optional variants?: {
        props: Partial<SmartInputFieldProps>;
        style: Interpolation<{
            theme: Theme;
        }>;
    }[]