@clubmed/trident-ui
Version:
Shared ClubMed React UI components
12 lines (11 loc) • 370 B
TypeScript
import type { FunctionComponent, PropsWithChildren } from 'react';
import { type IconicNames, type IconicTypes } from '../atoms/Icons';
interface CardProps {
title: string;
icon: IconicNames;
iconType?: IconicTypes;
theme?: 'light' | 'dark';
dataName?: string;
}
export declare const Card: FunctionComponent<PropsWithChildren<CardProps>>;
export {};