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 ( - + ); });