UNPKG

tdesign-react

Version:
8 lines (7 loc) 293 B
import React from 'react'; import { TdCardProps } from './type'; import { StyledProps } from '../common'; export interface CardProps extends TdCardProps, StyledProps { } declare const Card: React.ForwardRefExoticComponent<CardProps & React.RefAttributes<HTMLDivElement>>; export default Card;