@open-condo/ui
Version:
A set of React UI components for developing applications inside the condo ecosystem
15 lines • 671 B
TypeScript
import React from 'react';
import '../checkbox/cardCheckbox.less';
import { CardBodyProps } from '../body/cardBody';
import { CardProps } from '../card';
import { CardHeaderProps } from '../header/cardHeader';
export type CardButtonProps = Pick<CardProps, 'accent' | 'disabled' | 'id' | 'className' | 'onClick'> & {
header?: CardHeaderProps;
body?: CardBodyProps;
};
declare const CardButton: React.ForwardRefExoticComponent<Pick<CardProps, "className" | "id" | "onClick" | "disabled" | "accent"> & {
header?: CardHeaderProps;
body?: CardBodyProps;
} & React.RefAttributes<HTMLDivElement>>;
export { CardButton, };
//# sourceMappingURL=cardButton.d.ts.map