Fixed typescript typing for aria-labelledby and aria-label

This commit is contained in:
Tuğçe Küçükoğlu 2022-07-22 22:40:24 +03:00
parent 5e41e0a56b
commit 556412d925
12 changed files with 77 additions and 25 deletions

View file

@ -70,6 +70,18 @@ const CheckboxProps = [
type: "any",
default: "null",
description: "Inline style of the input field."
},
{
name: "aria-labelledby",
type: "string",
default: "null",
description: "Establishes relationships between the component and label(s) where its value should be one or more element IDs."
},
{
name: "aria-label",
type: "string",
default: "null",
description: "Used to define a string that labels the element."
}
];