dumi-theme-antd-style
Version:
dumi-theme-antd-style 是为 dumi2 打造的一款文档站主题包,提供了更加美观、易用的研发与阅读体验
19 lines (18 loc) • 400 B
TypeScript
import { CSSProperties, type FC } from 'react';
import { IFeature } from '../../types';
/**
* @title Features Props
*/
export interface FeaturesProps {
/**
* @title Feature items
* @description An array of feature items
*/
items: IFeature[];
/**
* @title Style
*/
style?: CSSProperties;
}
declare const Features: FC<FeaturesProps>;
export default Features;