Update #3965 - For RadioButton

This commit is contained in:
Tuğçe Küçükoğlu 2023-05-24 15:29:06 +03:00
parent 4a9b279db1
commit e18b9b0b0b
3 changed files with 129 additions and 68 deletions

View file

@ -110,6 +110,16 @@ export interface RadioButtonProps {
* Establishes a string value that labels the component.
*/
'aria-label'?: string | undefined;
/**
* Uses to pass attributes to DOM elements inside the component.
* @type {RadioButtonPassThroughMethodOptions}
*/
pt?: RadioButtonPassThroughMethodOptions;
/**
* When enabled, it removes component related styles in the core.
* @defaultValue false
*/
unstyled?: boolean;
}
export interface RadioButtonSlots {}