CRLF -> LF

This commit is contained in:
vchikalkin 2024-11-27 17:17:09 +03:00
parent f66a5cf6c2
commit a6aa9e4b04
2 changed files with 5 additions and 12 deletions

View File

@ -5,7 +5,7 @@
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --end-of-line lf --write \"**/*.{ts,tsx,md}\""
"format": "prettier --end-of-line lf --write \"**/*.{ts,tsx,md,mjs}\""
},
"devDependencies": {
"prettier": "catalog:",

View File

@ -19,14 +19,11 @@ const buttonVariants = cva(
},
variant: {
default: 'bg-primary text-primary-foreground hover:bg-primary/90',
destructive:
'bg-destructive text-destructive-foreground hover:bg-destructive/90',
destructive: 'bg-destructive text-destructive-foreground hover:bg-destructive/90',
ghost: 'hover:bg-accent hover:text-accent-foreground',
link: 'text-primary underline-offset-4 hover:underline',
outline:
'border border-input bg-background hover:bg-accent hover:text-accent-foreground',
secondary:
'bg-secondary text-secondary-foreground hover:bg-secondary/80',
outline: 'border border-input bg-background hover:bg-accent hover:text-accent-foreground',
secondary: 'bg-secondary text-secondary-foreground hover:bg-secondary/80',
},
},
},
@ -41,11 +38,7 @@ const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
({ asChild = false, className, size, variant, ...props }, ref) => {
const Comp = asChild ? Slot : 'button';
return (
<Comp
className={cn(buttonVariants({ className, size, variant }))}
ref={ref}
{...props}
/>
<Comp className={cn(buttonVariants({ className, size, variant }))} ref={ref} {...props} />
);
},
);