Refactor #3965 - For InputSwitch

This commit is contained in:
Tuğçe Küçükoğlu 2023-05-24 14:15:28 +03:00
parent 51f2913c48
commit 5b6fd8ac8e
3 changed files with 119 additions and 80 deletions

View file

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