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) 471 B
export type SocialNetworks = "instagram" | "twitter" | "youtube" | "x" | "gitlab" | "github" | "linkedin" | "mastodon" | "facebook" | "xing" | "website" | "email" | "bluesky"; export interface ISocialMediaItem { href: string; type: SocialNetworks; } export interface IPolicy { title: string; href: string; } export interface ISupportedBy { alt?: string; href?: string; img: string; width?: string | number; height?: string | number; }