import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; import sharedStyles from '../../views/Styles'; import { themes } from '../../lib/constants'; import { IInput } from './interfaces'; const styles = StyleSheet.create({ container: { marginBottom: 16 }, label: { fontSize: 14, marginVertical: 10, ...sharedStyles.textSemibold }, description: { marginBottom: 10, fontSize: 15, ...sharedStyles.textRegular }, error: { marginTop: 8, fontSize: 14, ...sharedStyles.textRegular, ...sharedStyles.textAlignCenter }, hint: { fontSize: 14, ...sharedStyles.textRegular } }); export const Input = ({ element, parser, label, description, error, hint, theme }: IInput) => ( {label ? ( {label} ) : null} {description ? {description} : null} {parser.renderInputs({ ...element }, BLOCK_CONTEXT.FORM, parser)} {error ? {error} : null} {hint ? {hint} : null} );