[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.

24 lines
574 B

5 years ago
5 years ago
4 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 (
  11. <FileField
  12. name={name}
  13. label={label}
  14. width={128}
  15. height={128}
  16. help={help}
  17. previewWidth={64}
  18. maxSize={MEDIA_DEFAULT_MAX_SIZE} />
  19. )
  20. }
  21. export default ImageField