We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28a1cfe commit f5a184bCopy full SHA for f5a184b
1 file changed
packages/ui-components/src/components/Select/Select.component.tsx
@@ -86,8 +86,10 @@ export type SelectContextProps = {
86
}
87
export const SelectContext = createContext<SelectContextProps | undefined>(undefined)
88
89
-export interface SelectProps
90
- extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, "value" | "defaultValue" | "onChange"> {
+export interface SelectProps extends Omit<
+ ButtonHTMLAttributes<HTMLButtonElement>,
91
+ "value" | "defaultValue" | "onChange"
92
+> {
93
/** Pass an aria-label to the Select toggle button */
94
ariaLabel?: string
95
/** The children to render as options. Use the SelectOption component, and SelectDivider if needed. */
0 commit comments