val textFieldValue by remember { mutableStateOf("") }

NeoTextField(
		value = textFieldValue
		placeHolder = //TextField placeholder
		icon = //Leading Icon, nullable
		trailingIcon = //Trailing Icon, nullable
)

Show a leading Icon

Untitled

NeoTextField(
		value = textFieldValue,
		icon = {
			Icon(
					imageVector = Icons.Default.Clear,
					contentDescription = null,
			)
		}
)

Show a trailing Icon

Untitled

NeoTextField(
		value = textFieldValue,
		trailingIcon = {
			Icon(
					imageVector = Icons.Default.Clear,
					contentDescription = null,
			)
		}
)