@theguild/components
Version:
20 lines (17 loc) • 507 B
text/typescript
import { ReactNode, FC } from 'react';
export { HeroLogo } from './hero-logo.mjs';
export { HeroDecorationFromLogo } from './hero-decoration-from-logo.mjs';
import 'react/jsx-runtime';
import '../decorations/index.mjs';
import '../../logos/angular.mjs';
import 'nextra/icons';
interface HeroProps {
className?: string;
heading: string;
text: string;
checkmarks: string[];
children?: ReactNode;
top?: ReactNode;
}
declare const Hero: FC<HeroProps>;
export { Hero, type HeroProps };