fix: adjust leading icon size in AppTextField
This commit is contained in:
parent
a2672f7a6b
commit
3ac9920e0f
|
|
@ -5,6 +5,7 @@ import androidx.compose.foundation.ExperimentalFoundationApi
|
|||
import androidx.compose.foundation.border
|
||||
import androidx.compose.foundation.layout.fillMaxWidth
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.layout.size
|
||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||
import androidx.compose.foundation.text.KeyboardOptions
|
||||
import androidx.compose.material3.Icon
|
||||
|
|
@ -47,7 +48,8 @@ fun AppTextField(
|
|||
Icon(
|
||||
painter = leadingIcon,
|
||||
contentDescription = "Email Icon",
|
||||
tint = LightGrey
|
||||
tint = LightGrey,
|
||||
modifier = Modifier.size(16.dp)
|
||||
)
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user