Skip to content

Commit

Permalink
Fix passing custom styles to SelectorGroup options (#2388)
Browse files Browse the repository at this point in the history
  • Loading branch information
connor-baer authored Jan 15, 2024
1 parent 8b4ffd9 commit e7fbc09
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/seven-peaches-float.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@sumup/circuit-ui': patch
---

Fixed passing custom styles to the SelectorGroup options.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export const SelectorGroup = forwardRef<
<Selector
{...option}
key={option.label}
className={classes.option}
className={clsx(classes.option, option.className)}
name={name}
onChange={onChange}
onBlur={onBlur}
Expand Down

1 comment on commit e7fbc09

@vercel
Copy link

@vercel vercel bot commented on e7fbc09 Jan 15, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.