import React from 'react'; import { View, StyleSheet } from 'react-native'; import { FormTextInput } from '.'; const styles = StyleSheet.create({ paddingHorizontal: { paddingHorizontal: 14 } }); export default { title: 'TextInput' }; const item = { name: 'Rocket.Chat', longText: 'https://open.rocket.chat/images/logo/android-chrome-512x512.png' }; export const ShortAndLong = () => ( <> ); export const Icons = () => ( <> {}} /> ); export const Multiline = () => ( <> ); export const SecureTextEntry = () => ( <> ); export const Loading = () => ( <> );