UNPKG

oadp-material

Version:
23 lines (22 loc) 496 B
import * as React from 'react'; import './index.scss'; export interface OadpCardHeaderProps { /** * 卡片的标题 */ title?: React.ReactNode; /** * 卡片的副标题 */ subTitle?: React.ReactNode; /** * 标题区域的用户自定义内容 */ extra?: React.ReactNode; /** * 设置标签类型 */ component?: React.ElementType; } declare const OadpCardHeader: React.FC<OadpCardHeaderProps>; export default OadpCardHeader;