@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).
14 lines (13 loc) • 494 B
TypeScript
import { PropsWithChildren } from 'react';
export interface GridCardProps {
title: string;
subtitle?: string;
buttonCaption?: string;
buttonTarget?: string;
img?: string;
imgAlt?: string;
light?: boolean;
icon?: React.ReactNode;
className?: string;
}
export declare function GridCard({ title, subtitle, children, buttonCaption, buttonTarget, img, imgAlt, light, icon, className, }: PropsWithChildren<GridCardProps>): import("react/jsx-runtime").JSX.Element;