File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,8 @@ const buttonVariants = cva(
3535) ;
3636
3737export interface ButtonProps
38- extends React . ButtonHTMLAttributes < HTMLButtonElement > ,
38+ extends
39+ React . ButtonHTMLAttributes < HTMLButtonElement > ,
3940 VariantProps < typeof buttonVariants > {
4041 asChild ?: boolean ;
4142}
Original file line number Diff line number Diff line change @@ -2,8 +2,7 @@ import * as React from "react";
22
33import { cn } from "@/lib/utils" ;
44
5- export interface TextareaProps
6- extends React . TextareaHTMLAttributes < HTMLTextAreaElement > { }
5+ export interface TextareaProps extends React . TextareaHTMLAttributes < HTMLTextAreaElement > { }
76
87const Textarea = React . forwardRef < HTMLTextAreaElement , TextareaProps > (
98 ( { className, ...props } , ref ) => {
You can’t perform that action at this time.
0 commit comments