@yuntijs/ui
Version:
☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps
14 lines (13 loc) • 589 B
TypeScript
/// <reference types="react" />
import { ProCardContent } from './Content';
import { ProCardDescriptions } from './Descriptions';
import { ProCardHeader } from './Header';
export type { ProCardProps } from './Card';
export type { ProCardContentProps } from './Content';
export type { ProCardDescriptionsProps } from './Descriptions';
export type { ProCardHeaderProps } from './Header';
export declare const ProCard: import("react").FC<import("./Card").ProCardProps> & {
Header: typeof ProCardHeader;
Descriptions: typeof ProCardDescriptions;
Content: typeof ProCardContent;
};