UNPKG

@lobehub/ui

Version:

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

17 lines (16 loc) 487 B
import { FC } from 'react'; import { type BlockProps } from "../../Block"; import { type IconProps } from "../../Icon"; import { type TagProps } from "../../Tag"; export interface CardProps extends Omit<BlockProps, '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;