mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 13:43:03 -05:00
4b711b3526
* Refactor context * fix * fix
32 lines
922 B
TypeScript
32 lines
922 B
TypeScript
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<string, string>;
|
|
|
|
export const ExportForm = () => {
|
|
const { cancel, exportPenpot } = useFigmaContext();
|
|
const methods = useForm<FormValues>();
|
|
|
|
return (
|
|
<FormProvider {...methods}>
|
|
<form onSubmit={methods.handleSubmit(exportPenpot)}>
|
|
<Stack>
|
|
<MissingFontsSection />
|
|
<Stack space="xsmall" direction="row">
|
|
<Button type="submit" fullWidth>
|
|
Export to Penpot
|
|
</Button>
|
|
<Button secondary onClick={cancel} fullWidth>
|
|
Cancel
|
|
</Button>
|
|
</Stack>
|
|
</Stack>
|
|
</form>
|
|
</FormProvider>
|
|
);
|
|
};
|