@payfit/unity-components
Version:
19 lines (18 loc) • 733 B
TypeScript
import { default as React, PropsWithChildren } 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<PropsWithChildren>;
export declare const CardTitle: React.FC<PropsWithChildren>;
export declare const CardContent: React.FC<PropsWithChildren>;
export declare const CardActions: React.FC<PropsWithChildren>;
export declare const Link: React.FC<PropsWithChildren<React.ComponentProps<'a'>>>;
type CardGridProps = {
children: React.ReactNode;
cols?: number;
};
export declare const CardGrid: React.FC<CardGridProps>;
export {};