Skip to content

Commit b4fd43b

Browse files
committed
feedback
1 parent fce6f91 commit b4fd43b

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

packages/javascript/doodle-ui/src/components/ToggleGroup/ToggleGroup.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,10 @@ const ToggleGroupContext = React.createContext<VariantProps<typeof ToggleVariant
2727
const ToggleGroup = React.forwardRef<
2828
React.ElementRef<typeof ToggleGroupPrimitive.Root>,
2929
React.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof ToggleVariants>
30-
>(({ className, size, children, rovingFocus = false, ...props }, ref) => (
30+
>(({ className, size, children, ...props }, ref) => (
3131
// TODO: Replace hardcoded hex colors with design token CSS variables once the token system is ready.
3232
<ToggleGroupPrimitive.Root
3333
ref={ref}
34-
rovingFocus={rovingFocus}
3534
className={cn(
3635
'flex items-center justify-center gap-2 p-1 rounded-lg bg-[#F4F4F4] dark:bg-[#222222] shadow-[0_1px_2px_0_rgba(0,0,0,0.30)]',
3736
className

0 commit comments

Comments
 (0)