import React, { FC } from 'react' import { MEDIA_ICON_MAX_SIZE } from '../../constants' import FileField from './file-field' interface Props { name: string label?: string help?: string } const IconImageField: FC = ({ name, label = 'Icon Image', help = 'Approx 32 x 32. Max 1 MB.' }) => { return ( ) } export default IconImageField