Skip to content

Commit

Permalink
fix(ui): style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Nov 13, 2024
1 parent b26c90b commit 10f6e9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ export type ComboBoxWidth = "full" | "auto"
//eslint-disable-next-line no-unused-vars
type OnChangeHandler = (value: string) => void

export interface ComboBoxProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange' | 'onInput' | 'children'> {
export interface ComboBoxProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onChange" | "onInput" | "children"> {
/** The aria-label of the ComboBox. Defaults to the label if label was passed. */
ariaLabel?: string
/** The children to Render. Use `ComboBox.Option` elements. */
Expand Down

0 comments on commit 10f6e9f

Please sign in to comment.