hh-ui-components
Version:
16 lines (15 loc) • 361 B
TypeScript
import React from "react";
export interface HeroProps {
className?: string;
title?: string;
description?: string;
desktopImg?: string;
mobileImg?: string;
href?: string;
leftLabel?: string;
rightLabel?: string;
leftLink?: string;
rightLink?: string;
aLabel?: string;
}
export declare const Hero: React.FC<HeroProps>;