diff --git a/packages/ui/src/components/Select/Select.stories.tsx b/packages/ui/src/components/Select/Select.stories.tsx index 5ca84d10f6..5c3ed242dc 100644 --- a/packages/ui/src/components/Select/Select.stories.tsx +++ b/packages/ui/src/components/Select/Select.stories.tsx @@ -328,3 +328,34 @@ export const WithLongNamesAndPadding: Story = { ), ], }; + +export const WithAccessibilityProps: Story = { + args: { + ...Default.args, + }, + render: args => ( + +
+

With aria-label

+ +
+
+ ), +};