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

10 lines (9 loc) 549 B
import { DeviceBreakpointsType } from '../../../types/breakpoints/breakpoints'; import { DecorativePropsType } from '../../decorativeElement/types/decorativeElement'; import { NavigationCardStylesPropsType } from '../types/navigationCardTheme'; type PropsReturnType = { marginRight: string | undefined; additionalProps: object | undefined; }; export declare const buildProps: (styles: NavigationCardStylesPropsType, element: DecorativePropsType | undefined, device: DeviceBreakpointsType, dataTestId?: string) => PropsReturnType; export {};