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

29 lines (28 loc) 876 B
import { PropsWithChildren } from 'react'; export interface MessageSpaceProps { title?: string; target: string; name: string; description: string; image: { src: string; alt: string; }; memberCount: number; tag: string; className?: string; } export declare function MessageSpace({ title, target, name, description, image, memberCount, tag, children, className, }: PropsWithChildren<MessageSpaceProps>): import("react/jsx-runtime").JSX.Element; interface MessageSpaceInfoProps { target: string; name: string; description: string; image: { alt: string; src: string; }; memberCount: number; alias: string; } export declare function MessageSpaceInfo({ target, name, description, image, memberCount, alias, }: MessageSpaceInfoProps): import("react/jsx-runtime").JSX.Element; export {};