props.d.ts 187 B

12345
  1. import { IBaseProps } from '../_util/base';
  2. export interface ImageIconProps extends IBaseProps {
  3. image: string;
  4. }
  5. export declare const ImageIconDefaultProps: Partial<ImageIconProps>;