import { useStorage } from '@libs/storage/provider'; import { CancelIcon } from '@shared/icons'; import { useWidgets } from '@stores/widgets'; export function TitleBar({ id, title }: { id?: string; title: string }) { const { db } = useStorage(); const remove = useWidgets((state) => state.removeWidget); return (