UNPKG

@open-condo/ui

Version:

A set of React UI components for developing applications inside the condo ecosystem

15 lines 456 B
import React from 'react'; import { IconProps } from '@open-condo/icons'; export type CardLinkType = { LinkWrapper?: React.FC<{ children: React.ReactElement; href: string; }>; label: string; href: string; PreIcon?: React.FC<IconProps>; AfterIcon?: React.FC<IconProps>; openInNewTab?: boolean; }; export declare const renderLink: (linkProps: CardLinkType) => React.JSX.Element; //# sourceMappingURL=index.d.ts.map