@fchh/fcos-suite-ui
Version:
Reusable UI components based on React and TailwindCSS for the Fab City OS Suite (initially funded by the Interfacer EU project).
17 lines (16 loc) • 694 B
TypeScript
import { INewsCategory } from '../interfaces/INews';
import { PropsWithChildren } from 'react';
export interface HeroSectionProps {
src: string;
alt?: string;
withGradientOnMobile?: boolean;
title?: string;
description?: string;
boxAlignment?: "left" | "right" | "center";
categories?: INewsCategory[];
transparentOnMobile?: boolean;
imageTag?: string;
className?: string;
target?: string;
}
export declare function HeroSection({ src, alt, withGradientOnMobile, children, title, description, boxAlignment, categories, transparentOnMobile, imageTag, className, target, }: PropsWithChildren<HeroSectionProps>): import("react/jsx-runtime").JSX.Element;