Value
Identifies value of the text box. This parameter supports two-way binding.
razor
[Parameter] public string Value { get; set; } = "";
Example
razor
<ButtonTextBox Placeholder="Product title" Value="@_productTitle" OnButtonClick="HandleButtonClick">
<ButtonContent>
<img src="images/add.svg" height="16" />
</ButtonContent>
</ButtonTextBox>