diff --git a/rsconcept/frontend/src/features/library/components/ToolbarItemAccess.tsx b/rsconcept/frontend/src/features/library/components/ToolbarItemAccess.tsx index ddae13f6..2ab4e428 100644 --- a/rsconcept/frontend/src/features/library/components/ToolbarItemAccess.tsx +++ b/rsconcept/frontend/src/features/library/components/ToolbarItemAccess.tsx @@ -1,3 +1,5 @@ +import clsx from 'clsx'; + import { HelpTopic } from '@/features/help'; import { BadgeHelp } from '@/features/help/components'; import { useRoleStore, UserRole } from '@/features/users'; @@ -20,9 +22,11 @@ interface ToolbarItemAccessProps { toggleReadOnly: () => void; schema: ILibraryItem; isAttachedToOSS: boolean; + className?: string; } export function ToolbarItemAccess({ + className, visible, toggleVisible, readOnly, @@ -40,7 +44,7 @@ export function ToolbarItemAccess({ } return ( -
+