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

17 lines (16 loc) 530 B
export interface PersonProps { name: string; position: string; organization?: string; image: string; email?: string; linkedin?: string; twitter?: string; instagram?: string; facebook?: string; mastodon?: string; xing?: string; bluesky?: string; className?: string; } export declare function Person({ name, position, organization, image, email, linkedin, twitter, instagram, facebook, mastodon, xing, bluesky, className, }: PersonProps): import("react/jsx-runtime").JSX.Element;