UNPKG

@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).

24 lines (23 loc) 837 B
import { INews } from '../interfaces/INews'; export interface HorizontalNewsCardListViewProps { titleImage: string; titleImageAlt?: string; titleImageTag?: string; subtitle: string; title: string; cards: INews[]; tags?: Array<{ target?: string; title: string; }>; breadcrumbs?: Array<{ target?: string; title: string; }>; onTagEnable?: (tag: string) => void; onTagDisable?: (tag: string) => void; activeTags?: Array<string>; children?: React.ReactNode; teaser?: string; } export declare function HorizontalNewsCardListView({ titleImage, titleImageAlt, titleImageTag, title, subtitle, cards, tags, breadcrumbs, onTagEnable, onTagDisable, activeTags, children, teaser, }: HorizontalNewsCardListViewProps): import("react/jsx-runtime").JSX.Element;