@open-condo/ui
Version:
A set of React UI components for developing applications inside the condo ecosystem
20 lines • 819 B
TypeScript
import { CardBody } from './body/cardBody';
import { CardButton } from './button/cardButton';
import { Card as CardComponent } from './card';
import './style.less';
import { CardCheckbox } from './checkbox/cardCheckbox';
import { CardHeader } from './header/cardHeader';
type CardType = typeof CardComponent & {
CardCheckbox: typeof CardCheckbox;
CardButton: typeof CardButton;
CardHeader: typeof CardHeader;
CardBody: typeof CardBody;
};
declare const Card: CardType;
export type { CardProps } from './card';
export type { CardCheckboxProps } from './checkbox/cardCheckbox';
export type { CardButtonProps } from './button/cardButton';
export type { CardHeaderProps } from './header/cardHeader';
export type { CardBodyProps } from './body/cardBody';
export { Card, };
//# sourceMappingURL=index.d.ts.map