@upv/react-ui-core
Version:
**USHI Design System — Modern UI Component Library**
12 lines (11 loc) • 399 B
TypeScript
import React from "react";
import { DefaultSectionProps } from "./DefaultSection";
interface HeroSectionProps extends DefaultSectionProps {
title?: string | null | false;
subtitle?: string | null | false;
description?: string | null | false;
onPrimaryAction?: () => void;
onSecondaryAction?: () => void;
}
export declare const HeroSection: React.FC<HeroSectionProps>;
export {};