CDP Frontend SDK
    Preparing search index...

    Interface FundModalTriggerProps

    Props for the fund modal trigger button

    interface FundModalTriggerProps {
        children?: ReactNode;
        label?: ReactNode;
        size?: ButtonSize;
        fullWidth?: boolean;
        variant?: ButtonVariant;
    }

    Hierarchy

    • Partial<
          Pick<
              ButtonProps,
              "className"
              | "fullWidth"
              | "size"
              | "style"
              | "variant",
          >,
      >
      • FundModalTriggerProps
    Index

    Properties

    children?: ReactNode

    If provided, will render the children instead of the default trigger button.

    label?: ReactNode

    The label to display on the trigger button.

    size?: ButtonSize

    The size of the button. Defaults to "md".

    fullWidth?: boolean

    Whether the button should be full width.

    variant?: ButtonVariant

    The variant of the button. Defaults to "primary".