UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

17 lines (16 loc) 486 B
import { TagProps } from 'antd'; import { FC } from 'react'; import { type FlexboxProps } from 'react-layout-kit'; import { type IconProps } from "../../Icon"; export interface CardProps extends Omit<FlexboxProps, 'children'> { desc?: string; href?: string; icon?: IconProps['icon']; iconProps?: Omit<IconProps, 'icon'>; image?: string; tag?: string; tagColor?: TagProps['color']; title: string; } declare const Card: FC<CardProps>; export default Card;