[ABANDONED] React/Redux front end for the Flexor social network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
449 B

5 years ago
5 years ago
5 years ago
  1. import React, { FC } from 'react'
  2. import { MEDIA_DEFAULT_MAX_SIZE } from '../../constants'
  3. import FileField from './file-field'
  4. interface Props {
  5. name: string
  6. label?: string
  7. help?: string
  8. }
  9. const ImageField: FC<Props> = ({ name, label = 'Image', help = 'Approx 128 x 128. Max 5 MBs.' }) => {
  10. return <FileField name={name} label={label} help={help} previewWidth={64} maxSize={MEDIA_DEFAULT_MAX_SIZE} />
  11. }
  12. export default ImageField