diff --git a/packages/components/progress/stories/circular-progress.stories.tsx b/packages/components/progress/stories/circular-progress.stories.tsx index b2255d119..e92e43b77 100644 --- a/packages/components/progress/stories/circular-progress.stories.tsx +++ b/packages/components/progress/stories/circular-progress.stories.tsx @@ -106,7 +106,6 @@ export const WithValueFormatting = { args: { ...defaultProps, label: "Loading...", - size: "xl", value: 70, color: "warning", showValueLabel: true, @@ -119,7 +118,6 @@ export const CustomClassnames = { args: { ...defaultProps, - size: "xl", strokeWidth: 4, value: 70, showValueLabel: true, diff --git a/packages/components/switch/stories/switch.stories.tsx b/packages/components/switch/stories/switch.stories.tsx index 585061485..0565e9dab 100644 --- a/packages/components/switch/stories/switch.stories.tsx +++ b/packages/components/switch/stories/switch.stories.tsx @@ -201,7 +201,6 @@ export const DisableAnimation = { export const WithThumbIcon = { args: { ...defaultProps, - size: "xl", thumbIcon: (props: SwitchThumbIconProps) => props.isSelected ? ( @@ -216,7 +215,6 @@ export const WithIcons = { args: { ...defaultProps, - size: "xl", }, };