import { Button } from '@create-figma-plugin/ui'; import { FormProvider, useForm } from 'react-hook-form'; import { Stack } from '@ui/components/Stack'; import { useFigmaContext } from '@ui/context'; import { MissingFontsSection } from './MissingFontsSection'; export type FormValues = Record; export const ExportForm = () => { const { cancel, exportPenpot } = useFigmaContext(); const methods = useForm(); return (
); };