plugins.Header.SimpleHeader.SidebarSwitcher.tsx Maven / Gradle / Ivy
import React from 'react'
import classNames from 'classnames'
interface Props {
defaultIcon?: string
toggledIcon?: string
sidebarOpen: boolean
toggleSidebar(): void
}
export function SidebarSwitcher({
defaultIcon,
toggledIcon,
sidebarOpen,
toggleSidebar,
}: Props) {
return (
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy