@cainiaofe/cn-ui-m
Version:
22 lines (21 loc) • 436 B
TypeScript
import { BasicComponentProps } from "../../../types";
import { ReactNode } from 'react';
export interface CnDemoBlockProps extends BasicComponentProps {
/**
* 标题
*/
title: string;
/**
* 内容的内边距
* @default "12px 12px"
*/
padding?: string | number | number[];
/**
* 内容的背景
*/
background?: string;
/**
* 内容
*/
children?: ReactNode;
}