UNPKG

@fakel/rest-admin

Version:

An application that makes it easier to work with your API

10 lines (9 loc) 270 B
import React from 'react'; import { FieldProps } from '../../@types'; declare type ImageFieldProps = { width?: string; style?: React.CSSProperties; alt?: string; }; declare const ImageField: React.FC<FieldProps & ImageFieldProps>; export default ImageField;