UNPKG

@payfit/unity-illustrations

Version:

19 lines (18 loc) 719 B
import { default as React } from 'react'; type CardProps = React.PropsWithChildren; export declare const Card: React.FC<CardProps>; export declare const CardWithCover: React.FC<CardProps & { coverSrc: string; coverAlt: string; }>; export declare const CardHeader: React.FC<React.PropsWithChildren>; export declare const CardTitle: React.FC<React.PropsWithChildren>; export declare const CardContent: React.FC<React.PropsWithChildren>; export declare const CardActions: React.FC<React.PropsWithChildren>; export declare const Link: React.FC<React.ComponentProps<'a'>>; type CardGridProps = { children: React.ReactNode; cols?: number; }; export declare const CardGrid: React.FC<CardGridProps>; export {};