UNPKG

@logicflow/dumi-theme-simple

Version:
35 lines (34 loc) 790 B
import React from 'react'; import { IC } from '../../types'; type LFBannerButtonProps = { text: IC; link: string; style?: React.CSSProperties; type?: string; shape?: 'round' | 'square'; icon?: string; }; type LFBannerProps = { className?: string; style?: React.CSSProperties; title: IC; engine?: IC; description: IC; image?: string; imageStyle?: React.CSSProperties; buttons?: LFBannerButtonProps[]; githubUrl: string; showGithubStars?: boolean; features: any; advantages: any; }; export interface props { height: number | string; } export declare const FilterDivider: React.FC<props>; /** * Index.技术栈的描述区域! * 各自配置 */ export declare const LFBanner: React.FC<LFBannerProps>; export {};