StandardSearchBar

fun StandardSearchBar(text: String, onTextChanged: (String?) -> Unit, modifier: Modifier = Modifier, typeface: TextStyle = AirwallexTypography.Body200.toComposeTextStyle(), textColorStyle: Color = AirwallexColor.TextPrimary, backgroundColorStyle: Color = MaterialTheme.colorScheme.secondaryContainer, hint: String = "", singleLine: Boolean = true)
fun StandardSearchBar(value: String, onValueChange: (String?) -> Unit, modifier: Modifier = Modifier, textStyle: TextStyle, textColor: Color, backgroundColor: Color, hint: String = "", enabled: Boolean = true, singleLine: Boolean = true, maxLines: Int = if (singleLine) 1 else Int.MAX_VALUE, minLines: Int = 1, visualTransformation: VisualTransformation = VisualTransformation.None, interactionSource: MutableInteractionSource = remember { MutableInteractionSource() })