werkbank
    Preparing search index...

    Type Alias DialogProps

    DialogProps: JSX.IntrinsicElements["dialog"] & {
        enterAnimation?: string;
        exitAnimation?: string;
    }

    Properties for the Dialog component. Extends the standard HTML dialog attributes with animation support.

    Type Declaration

    • OptionalenterAnimation?: string

      The CSS animation name or shorthand to apply when the dialog is shown.

      "fade-in 0.3s ease-out"
      
    • OptionalexitAnimation?: string

      The CSS animation name or shorthand to apply when the dialog is hidden.

      "fade-out 0.2s ease-in"