@open-condo/ui
Version:
A set of React UI components for developing applications inside the condo ecosystem
20 lines • 867 B
TypeScript
import { CardProps as DefaultCardProps } from 'antd';
import React, { CSSProperties } from 'react';
export type CardProps = Omit<React.HTMLAttributes<HTMLDivElement>, 'title'> & Pick<DefaultCardProps, 'hoverable' | 'title'> & {
width?: CSSProperties['width'];
bodyPadding?: CSSProperties['padding'];
titlePadding?: CSSProperties['padding'];
accent?: boolean;
active?: boolean;
disabled?: boolean;
};
declare const Card: React.ForwardRefExoticComponent<Omit<React.HTMLAttributes<HTMLDivElement>, "title"> & Pick<DefaultCardProps, "title" | "hoverable"> & {
width?: CSSProperties["width"];
bodyPadding?: CSSProperties["padding"];
titlePadding?: CSSProperties["padding"];
accent?: boolean;
active?: boolean;
disabled?: boolean;
} & React.RefAttributes<HTMLDivElement>>;
export { Card, };
//# sourceMappingURL=card.d.ts.map