Documentation
    Preparing search index...

    Type Alias BaseComponentProps<ElementType>

    BaseComponentProps: ThemeStyleProps & Partial<
        {
            ariaProps: React.AriaAttributes & { role?: React.AriaRole };
            children: React.ReactNode;
            classNames: string[];
            id: string;
            reference: React.RefObject<ElementType>;
        },
    >

    Type Parameters

    • ElementType = HTMLElement