UNPKG

react-odyssey

Version:

React components for Odyssey design system

13 lines (12 loc) 513 B
import { FunctionComponent, ReactNode, HTMLAttributes } from 'react'; import { Omit } from './util'; export declare const CardActions: FunctionComponent<HTMLAttributes<HTMLElement>>; export declare const CardFooter: FunctionComponent<HTMLAttributes<HTMLElement>>; export declare type CardProps = Omit<HTMLAttributes<HTMLElement>, 'title'> & { actions?: ReactNode; icon?: ReactNode; src?: string; meta?: ReactNode; title?: ReactNode; }; export declare const Card: FunctionComponent<CardProps>;