CDP Frontend SDK
    Preparing search index...

    Type Alias SignOutButtonProps

    Props for the SignOutButton component.

    The children to render inside the button.

    A function to call when the sign-out is successful.

    The variant of the button.

    type SignOutButtonProps = {
        children?: ReactNode;
        onSuccess?: () => void;
        variant?: ButtonVariant;
    }
    Index

    Properties

    children?: ReactNode
    onSuccess?: () => void
    variant?: ButtonVariant