- Make this list publicly visible
+
+ Make this list publicly visible
+
Make Public
setIsPublic((isPublic) => !isPublic)}
diff --git a/stories/atoms/toggle-switch.stories.tsx b/stories/atoms/toggle-switch.stories.tsx
index dd26905878..b105330a3e 100644
--- a/stories/atoms/toggle-switch.stories.tsx
+++ b/stories/atoms/toggle-switch.stories.tsx
@@ -16,19 +16,23 @@ Default.args = {
name: "test",
checked: false,
size: "base",
+ ariaLabel: "This is a toggle switch",
};
Small.args = {
name: "test",
checked: false,
size: "sm",
+ ariaLabel: "This is a toggle switch",
};
Large.args = {
name: "test",
checked: false,
size: "lg",
+ ariaLabel: "This is a toggle switch",
};
Custom.args = {
name: "test",
checked: false,
classNames: "w-8 h-4",
+ ariaLabel: "This is a toggle switch",
};