@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
8 lines (7 loc) • 508 B
TypeScript
import React from 'react';
import { INavigationRow } from './types/navigationRow';
declare const NavigationRowBoundary: <V extends string | unknown>(props: INavigationRow<V>, ref: React.ForwardedRef<HTMLButtonElement> | undefined | null) => JSX.Element;
declare const NavigationRow: <V extends string | unknown>(props: React.PropsWithChildren<INavigationRow<V>> & {
ref?: React.ForwardedRef<HTMLButtonElement> | undefined | null;
}) => ReturnType<typeof NavigationRowBoundary>;
export { NavigationRow };