Update expo application
Build and Push Next App / quality (push) Successful in 1m27s
Build and Push Next App / build-next (push) Successful in 3m58s

This commit is contained in:
Gabriel Brown
2026-06-22 12:13:02 -04:00
parent ddce5efb13
commit 42f95530de
78 changed files with 5315 additions and 421 deletions
+18
View File
@@ -0,0 +1,18 @@
import type { TextInputProps } from 'react-native';
import { Text, TextInput, View } from 'react-native';
export const Textarea = ({
label,
...props
}: TextInputProps & { label: string }) => (
<View className='gap-2'>
<Text className='text-muted-foreground text-xs font-medium'>{label}</Text>
<TextInput
className='border-border bg-background text-foreground min-h-28 rounded-md border px-3 py-3 align-top'
multiline
placeholderTextColor='#71717a'
textAlignVertical='top'
{...props}
/>
</View>
);