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

7 lines (6 loc) 368 B
import { PropsWithChildren } from 'react'; export interface LinkOrContainerProps { href?: string; className?: string; } export declare function LinkOrContainer({ children, href, className, }: PropsWithChildren<LinkOrContainerProps>): string | number | boolean | Iterable<import('react').ReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined;