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

11 lines (10 loc) 363 B
export interface PillCloudProps { activeTags?: string[]; tags?: Array<{ target?: string; title: string; }>; onTagEnable?: (tag: string) => void; onTagDisable?: (tag: string) => void; } export declare function PillCloud({ activeTags, tags, onTagEnable, onTagDisable, }: PillCloudProps): import("react/jsx-runtime").JSX.Element;