💄 Update landing page (#734)

This commit is contained in:
Luke Vella 2023-07-13 11:57:23 +01:00 committed by GitHub
parent 3b8cbbd2f2
commit 0e6c3c1115
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
69 changed files with 1939 additions and 1874 deletions

View file

@ -60,9 +60,13 @@ const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
const Comp = asChild ? Slot : "button";
return (
<Comp
className={cn(buttonVariants({ variant, size, className }), {
"pointer-events-none": loading,
})}
className={cn(
buttonVariants({ variant, size }),
{
"pointer-events-none": loading,
},
className,
)}
ref={ref}
type={type}
{...props}