UNPKG

@arco-design/web-react

Version:

Arco Design React UI Library.

14 lines (13 loc) 421 B
import { CSSProperties } from 'react'; import { ImageProps } from './interface'; interface ImageFooterProps { style?: CSSProperties; className?: string | string[]; title?: ImageProps['title']; description?: ImageProps['description']; actions?: ImageProps['actions']; prefixCls: string; simple?: boolean; } export declare const ImageFooter: (props: ImageFooterProps) => JSX.Element; export {};