import { Button } from "../../ui/button"; import { cn } from "../../../lib/utils"; import { SigmaIcon } from "lucide-react"; import { useEditor } from "novel"; export const MathSelector = () => { const { editor } = useEditor(); if (!editor) return null; return ( ); };