import { useAuthActions } from '@convex-dev/auth/react'; import { Button, type buttonVariants } from '@/components/ui'; import { type ComponentProps } from 'react'; import { type VariantProps } from 'class-variance-authority'; type Props = { buttonProps?: Omit, 'onClick'> & VariantProps & { asChild?: boolean; }; type?: 'signIn' | 'signUp'; }; export const MicrosoftSignInButton = ({ buttonProps, type = 'signIn', }: Props) => { const { signIn } = useAuthActions(); return ( ); };