mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2026-02-03 09:31:04 +08:00
9 lines
236 B
TypeScript
9 lines
236 B
TypeScript
import { SidebarIcon } from '@renderer/types'
|
|
|
|
import { useSettings } from './useSettings'
|
|
|
|
export function useSidebarIconShow(icon: SidebarIcon) {
|
|
const { sidebarIcons } = useSettings()
|
|
return sidebarIcons.visible.includes(icon)
|
|
}
|