@open-condo/ui
Version:
A set of React UI components for developing applications inside the condo ecosystem
21 lines • 649 B
TypeScript
import React from 'react';
import { EmojiProps } from '../../Emoji';
import { ProgressIndicatorProps } from '../../ProgressIndicator';
import { TagProps } from '../../Tag';
import { CardLinkType } from '../_utils';
import './cardHeader.less';
export type CardHeaderProps = {
tag?: TagProps;
progressIndicator?: ProgressIndicatorProps;
emoji?: EmojiProps[];
headingTitle?: string;
mainLink?: CardLinkType;
secondLink?: CardLinkType;
image?: {
src: string;
size: 'small' | 'big';
};
};
declare const CardHeader: React.FC<CardHeaderProps>;
export { CardHeader, };
//# sourceMappingURL=cardHeader.d.ts.map