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

10 lines (9 loc) 345 B
export interface FeatureProps { title: string; description: string; href?: string; hrefCaption?: string; icon: "wikis" | "chat" | "scales" | "flash"; className?: string; } export declare function Feature({ title, description, icon, href, hrefCaption, className, }: FeatureProps): import("react/jsx-runtime").JSX.Element;