From 0cab3cf9cd420f307a1e35cc18f1a904d209a9ce Mon Sep 17 00:00:00 2001 From: Burnt Nerve Date: Fri, 26 Apr 2024 14:04:44 -0500 Subject: [PATCH] Added prop for more direct access to input styles --- .../components/AbstraxionSignin/index.tsx | 4 ++-- packages/ui/src/input.tsx | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/apps/abstraxion-dashboard/components/AbstraxionSignin/index.tsx b/apps/abstraxion-dashboard/components/AbstraxionSignin/index.tsx index c960b366..504fe967 100644 --- a/apps/abstraxion-dashboard/components/AbstraxionSignin/index.tsx +++ b/apps/abstraxion-dashboard/components/AbstraxionSignin/index.tsx @@ -121,7 +121,7 @@ export const AbstraxionSignin = () => { { , "prefix">; export interface ITextFieldProps extends BaseInputProps { className?: string; error?: string; + baseInputClassName?: string; } export function Input({ className, placeholder, + // This should only be used for specific classes that can't override the base input styles. + baseInputClassName, value, error, onBlur, @@ -46,7 +49,9 @@ export function Input({