UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

15 lines (14 loc) 323 B
import type { ElementType } from 'react'; export interface HeroAction { github?: boolean; link: string; openExternal?: boolean; text: string; type?: 'primary' | 'default'; } export interface HeroProps { Link?: ElementType; actions?: HeroAction[]; description?: string; title?: string; }