fix: rename isBlocked to isExpanded in SplitButtonState interface

pull/6989/head
Layla Tichy 2024-12-23 10:45:09 +00:00 committed by GitButler
parent e5af2d3ad0
commit c8d9623593
1 changed files with 2 additions and 2 deletions

View File

@ -104,10 +104,10 @@ export interface SplitButtonPassThroughAttributes {
*/
export interface SplitButtonState {
/**
* Current blocked state as a boolean.
* Current expanded state as a boolean.
* @defaultValue false
*/
isBlocked: boolean;
isExpanded: boolean;
}
/**