feat: Sprint 5 - Toast, ConfirmDialog, EmptyStates, Settings, Export/Import, Accessibility (TERLOG-52/53/54/55/56/57/58/59)

This commit is contained in:
root
2026-02-19 22:05:40 +08:00
parent 6fe6ebef13
commit c8fe67f346
20 changed files with 1416 additions and 619 deletions

View File

@@ -14,6 +14,8 @@ export function Input({ label, error, ...props }: InputProps) {
error ? 'border-danger' : 'border-gray-200'
}`}
placeholderTextColor="#9CA3AF"
accessibilityLabel={label}
style={{ minHeight: 48 }}
{...props}
/>
{error && <Text className="text-danger text-sm mt-1">{error}</Text>}