@clubmed/trident-ui
Version:
Shared ClubMed React UI components
14 lines (13 loc) • 491 B
TypeScript
import { FunctionComponent, PropsWithChildren } from 'react';
import { CardProps as CardPropsV2 } from './v2/Card';
import { IconicNames, IconicTypes } from '@clubmed/trident-icons';
import { ChipProps } from '../Chip';
interface CardProps extends Omit<CardPropsV2, 'theme'> {
title: string;
icon: IconicNames;
iconType?: IconicTypes;
theme?: ChipProps['theme'];
dataName?: string;
}
export declare const Card: FunctionComponent<PropsWithChildren<CardProps>>;
export {};