UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

6 lines (5 loc) 424 B
import React from 'react'; import { GenericComponentsType, IGenericComponentsProvider } from './genericComponents.type'; export declare const GenericComponentContext: React.Context<GenericComponentsType | null>; export declare const GenericComponentsProvider: ({ children, value, }: React.PropsWithChildren<IGenericComponentsProvider>) => JSX.Element; export declare const useGenericComponents: () => GenericComponentsType;