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

8 lines (7 loc) 304 B
import { PropsWithChildren } from 'react'; export interface ActionBoxProps { title: string; description: string; className?: string; } export declare function ActionBox({ title, description, children, className, }: PropsWithChildren<ActionBoxProps>): import("react/jsx-runtime").JSX.Element;