@logicflow/dumi-theme-simple
Version:
Simple website theme based on dumi2.
16 lines (15 loc) • 319 B
TypeScript
import React from 'react';
interface Card {
icon: string;
title: string;
description: string;
}
interface FeaturesProps {
title?: string;
features: Card[];
className?: string;
style?: React.CSSProperties;
id?: string;
}
export declare const Features: React.FC<FeaturesProps>;
export {};