import { Button } from '@/components/ui/button'; import { cn } from '@/lib/utils'; import { t } from 'i18next'; import { X } from 'lucide-react'; import { useState } from 'react'; import CategoryPanel from './category-panel'; export default ({ parserId }: { parserId: string }) => { const [visible, setVisible] = useState(false); return (