From 73110138c18d2247132e4caf6a53df25f9e01de4 Mon Sep 17 00:00:00 2001 From: mehra Date: Mon, 1 Sep 2025 09:23:16 +0530 Subject: [PATCH] fix: unable to customize css styles of 'toolbar' component in Web Platform --- packages/toolbar/src/toolbar.web.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/toolbar/src/toolbar.web.tsx b/packages/toolbar/src/toolbar.web.tsx index f7fa25dc..3918637a 100644 --- a/packages/toolbar/src/toolbar.web.tsx +++ b/packages/toolbar/src/toolbar.web.tsx @@ -23,7 +23,7 @@ const Root = React.forwardRef( const Component = asChild ? Slot.View : View; return ( - + ); } @@ -54,7 +54,7 @@ const ToggleGroup = React.forwardRef( disabled={disabled} asChild > - + ); @@ -101,7 +101,7 @@ const ToggleItem = React.forwardRef( const Component = asChild ? Slot.Pressable : Pressable; return ( - + ); } @@ -112,7 +112,7 @@ ToggleItem.displayName = 'ToggleItemWebToolbar'; const Separator = React.forwardRef( ({ asChild, style, ...props }, ref) => { const Component = asChild ? Slot.View : View; - return ; + return ; } ); @@ -122,7 +122,7 @@ const Link = React.forwardRef(({ asChild, style, ...props }, const Component = asChild ? Slot.Pressable : Pressable; return ( - + ); }); @@ -133,7 +133,7 @@ const Button = React.forwardRef(({ asChild, style, ...pr const Component = asChild ? Slot.Pressable : Pressable; return ( - + ); });