fix: adjust leading icon size in AppTextField

This commit is contained in:
Cutiful 2025-07-05 11:23:13 +07:00
parent a2672f7a6b
commit 3ac9920e0f

View File

@ -5,6 +5,7 @@ import androidx.compose.foundation.ExperimentalFoundationApi
import androidx.compose.foundation.border import androidx.compose.foundation.border
import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.shape.RoundedCornerShape import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.foundation.text.KeyboardOptions import androidx.compose.foundation.text.KeyboardOptions
import androidx.compose.material3.Icon import androidx.compose.material3.Icon
@ -47,7 +48,8 @@ fun AppTextField(
Icon( Icon(
painter = leadingIcon, painter = leadingIcon,
contentDescription = "Email Icon", contentDescription = "Email Icon",
tint = LightGrey tint = LightGrey,
modifier = Modifier.size(16.dp)
) )
} }
}, },