@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
15 lines (14 loc) • 641 B
TypeScript
import { DeviceBreakpointsType } from '../../../types/breakpoints/breakpoints';
import { NavigationCardTagType, NavigationCardTextType } from '../types/navigationCard';
import { NavigationCardStylesPropsType } from '../types/navigationCardTheme';
interface INavigationCardInfo {
styles: NavigationCardStylesPropsType;
innerContainersComponent?: 'div' | 'span';
title?: NavigationCardTextType;
description?: NavigationCardTextType;
tag?: NavigationCardTagType;
device: DeviceBreakpointsType;
customHeight?: string;
}
export declare const NavigationCardInfo: (props: INavigationCardInfo) => JSX.Element;
export {};