@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).
12 lines (11 loc) • 470 B
TypeScript
import { INewsCategory } from '../interfaces/INews';
export interface HeroBoxProps {
title: string;
description: string;
selfAligned?: "left" | "right" | "center";
categories?: INewsCategory[];
className?: string;
transparentOnMobile?: boolean;
target?: string;
}
export declare function HeroBox({ title, description, categories, className, selfAligned, transparentOnMobile, target, }: HeroBoxProps): import("react/jsx-runtime").JSX.Element;