UNPKG

@cainiaofe/cn-ui-m

Version:
30 lines (29 loc) 534 B
import React from 'react'; import type { CnIconProps } from "../../cn-icon"; export interface CardTitleProps { /** * 外部主标题 */ title?: React.ReactNode; /** * 外部副标题 */ desc?: string; /** * 外部标题icon */ icon?: string | CnIconProps; /** * 顶部行动点 */ action?: React.ReactNode; /** * 是否没有padding * @default false */ noPadding?: boolean; /** * 自定义类名 */ className?: string; }