UNPKG

antd

Version:

An enterprise-class UI design language and React-based implementation

16 lines (15 loc) 408 B
/// <reference types="react" /> import React from 'react'; export interface CardProps { title?: React.ReactNode; extra?: React.ReactNode; bordered?: boolean; bodyStyle?: React.CSSProperties; style?: React.CSSProperties; loading?: boolean; children?: any; id?: string; className?: string; } declare var _default: (props: CardProps) => JSX.Element; export default _default;