@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
19 lines (18 loc) • 406 B
text/typescript
import { ElementType } from "react";
//#region src/awesome/Hero/type.d.ts
interface HeroAction {
github?: boolean;
link: string;
openExternal?: boolean;
text: string;
type?: 'primary' | 'default';
}
interface HeroProps {
Link?: ElementType;
actions?: HeroAction[];
description?: string;
title?: string;
}
//#endregion
export { HeroAction, HeroProps };
//# sourceMappingURL=type.d.mts.map