@perfma/heaven
Version:
An UI Framework base [Ant Design V4](https://ant.design/components/overview-cn/) for React.
15 lines (14 loc) • 487 B
TypeScript
import React from 'react';
import { CardProps } from 'antd';
import './index.less';
export interface ProCardProps extends Omit<CardProps, 'size'> {
shadow?: 'small' | 'normal' | 'large' | undefined | null;
bottomLinkText?: string;
onBottomLinkClick?: () => void;
}
declare const ProCard: {
(props: ProCardProps): JSX.Element;
Grid: React.FC<import("antd/lib/card").CardGridProps>;
Meta: React.FC<import("antd/lib/card").CardMetaProps>;
};
export default ProCard;