docs(alert): alert input label is only for radio/checkbox (#26923)

Resolves #26915
This commit is contained in:
Sean Perkins
2023-03-13 13:42:20 -04:00
committed by GitHub
parent f80991813a
commit d6c06ecfe8

View File

@ -31,6 +31,9 @@ export interface AlertInput {
name?: string;
placeholder?: string;
value?: any; // TODO(FW-2832): type
/**
* The label text to display next to the input, if the input type is `radio` or `checkbox`.
*/
label?: string;
checked?: boolean;
disabled?: boolean;