[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
587 B

5 years ago
5 years ago
4 years ago
5 years ago
  1. import React, { FC } from 'react'
  2. import { MEDIA_COVER_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 CoverImageField: FC<Props> = ({ name, label = 'Cover Image', help = 'Approx 400 x 200. Max 5 MBs.' }) => {
  10. return (
  11. <FileField
  12. name={name}
  13. label={label}
  14. width={400}
  15. height={200}
  16. help={help}
  17. previewWidth={200}
  18. maxSize={MEDIA_COVER_MAX_SIZE} />
  19. )
  20. }
  21. export default CoverImageField