@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).
13 lines (12 loc) • 350 B
TypeScript
export interface MessageRoomProps {
target: string;
name: string;
description: string;
image: {
src: string;
alt: string;
};
members: number;
tag: string;
}
export declare function MessageRoom({ target, name, description, image, members, tag, }: MessageRoomProps): import("react/jsx-runtime").JSX.Element;