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

11 lines (10 loc) 593 B
import React from 'react'; import { IFooter } from './types/footer'; declare const FooterBoundary: <V extends string | unknown>(props: IFooter<V>, ref: React.ForwardedRef<HTMLElement> | undefined | null) => JSX.Element; /** * @deprecated This component has been deprecated and will be removed in the next MAJOR release. Will include all this on the CheckBox component */ declare const Footer: <V extends string | unknown>(props: React.PropsWithChildren<IFooter<V>> & { ref?: React.ForwardedRef<HTMLElement> | undefined | null; }) => ReturnType<typeof FooterBoundary>; export { Footer };