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

14 lines (13 loc) 507 B
import { INewsImage, INewsCategory } from '../interfaces/INews'; export interface MiniCardProps { name?: string; subtitle?: React.ReactNode; image: INewsImage; rightImage?: INewsImage; rightImageHref?: string; tags?: INewsCategory[]; href?: string; type?: "light" | "dark"; className?: string; } export declare function MiniCard({ name, image, subtitle, tags, href, type, className, rightImage, rightImageHref, }: MiniCardProps): import("react/jsx-runtime").JSX.Element;