fomantic-ui-react
Version:
Fomantic-UI React -- A React Component Library.
24 lines (23 loc) • 1.22 kB
TypeScript
/// <reference types="react" />
import { CardProps } from './type';
declare const Card: {
({ as, className, children, ...props }: CardProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
Content: {
({ as, extra, className, children, ...props }: import("./type").CardContentProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
Header: {
({ as, className, content, children, ...props }: import("./type").CardHeaderProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
Meta: {
({ as, floated, className, content, children, ...props }: import("./type").CardMetaProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
Description: {
({ as, className, content, children, ...props }: import("./type").CardDescriptionProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
};
export default Card;