export type SignInWithBaseButtonProps = {
  align?: 'left' | 'center';
  variant?: 'solid' | 'transparent';
  colorScheme?: 'light' | 'dark' | 'system';
  onClick?: () => void;
};

export type BasePayButtonProps = {
  colorScheme?: 'light' | 'dark' | 'system';
  onClick?: () => void;
};
