@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) • 556 B
TypeScript
import React from 'react';
import { INavigationCard } from './types/navigationCard';
declare const NavigationCardBoundary: <V extends string | unknown>(props: INavigationCard<V>, ref: React.ForwardedRef<HTMLAnchorElement | HTMLButtonElement> | undefined | null) => JSX.Element;
declare const NavigationCard: <V extends string | unknown>(props: React.PropsWithChildren<INavigationCard<V>> & {
ref?: React.ForwardedRef<HTMLAnchorElement | HTMLButtonElement> | undefined | null;
}) => ReturnType<typeof NavigationCardBoundary>;
export { NavigationCard };