UNPKG

@logicflow/dumi-theme-simple

Version:
16 lines (15 loc) 319 B
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 {};