"use client" import { Button } from "@/components/ui/button" import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, } from "@/components/ui/dialog" import { DRIVE_BTN_GHOST, DRIVE_BTN_PRIMARY, DRIVE_DIALOG_BODY, DRIVE_DIALOG_CONTENT, DRIVE_DIALOG_FOOTER, DRIVE_DIALOG_HEADER, DRIVE_DIALOG_OVERLAY, DRIVE_TEXT_SECONDARY, DRIVE_TEXT_TITLE, } from "@/lib/drive/drive-dialog-styles" import { PAGE_FORMATS, type PageFormatId } from "@/lib/drive/page-formats" import { cn } from "@/lib/utils" export function DocsPageSetupDialog({ open, onOpenChange, pageFormatId, onPageFormatChange, }: { open: boolean onOpenChange: (open: boolean) => void pageFormatId: PageFormatId onPageFormatChange: (id: PageFormatId) => void }) { return ( Configuration de la page Format de page utilisé pour l'affichage et l'impression.
{PAGE_FORMATS.map((format) => ( ))}
) }