@retailmenot/anchor
Version:
A React UI Library by RetailMeNot
12 lines (11 loc) • 404 B
TypeScript
import * as React from 'react';
import { SpaceProps } from '@xstyled/system';
export declare type Gutters = 'none' | 'small' | 'medium' | 'large';
export interface CardProps extends React.HTMLAttributes<HTMLDivElement>, SpaceProps {
className?: string;
children?: any;
action?: any;
actionArea?: any;
gutter?: Gutters;
}
export declare const Card: React.FunctionComponent<CardProps>;