baseui
Version:
A React Component library implementing the Base design language
16 lines (15 loc) • 415 B
TypeScript
import * as React from 'react';
import type { CardProps } from './types';
export declare function hasThumbnail(props: {
readonly thumbnail?: string;
}): boolean;
declare function Card(props: CardProps): React.JSX.Element;
declare namespace Card {
var defaultProps: {
action: any;
children: any;
hasThumbnail: typeof hasThumbnail;
overrides: {};
};
}
export default Card;