diff options
Diffstat (limited to 'src/app/(main)/pixels/PixelAddButton.tsx')
| -rw-r--r-- | src/app/(main)/pixels/PixelAddButton.tsx | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/app/(main)/pixels/PixelAddButton.tsx b/src/app/(main)/pixels/PixelAddButton.tsx new file mode 100644 index 0000000..1573b9e --- /dev/null +++ b/src/app/(main)/pixels/PixelAddButton.tsx @@ -0,0 +1,19 @@ +import { useMessages } from '@/components/hooks'; +import { Plus } from '@/components/icons'; +import { DialogButton } from '@/components/input/DialogButton'; +import { PixelEditForm } from './PixelEditForm'; + +export function PixelAddButton({ teamId }: { teamId?: string }) { + const { formatMessage, labels } = useMessages(); + + return ( + <DialogButton + icon={<Plus />} + label={formatMessage(labels.addPixel)} + variant="primary" + width="600px" + > + {({ close }) => <PixelEditForm teamId={teamId} onClose={close} />} + </DialogButton> + ); +} |