File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 3
3
import { generateRandomIconShape , createSVG } from "@/lib/assistantIconUtils" ;
4
4
5
5
import { CCPairBasicInfo , DocumentSet , User } from "@/lib/types" ;
6
- import Italic from "@/components/ui/italic" ;
7
6
import { Separator } from "@/components/ui/separator" ;
8
7
import { Button } from "@/components/ui/button" ;
9
8
import { IsPublicGroupSelector } from "@/components/IsPublicGroupSelector" ;
Original file line number Diff line number Diff line change @@ -76,14 +76,16 @@ export interface ButtonProps
76
76
asChild ?: boolean ;
77
77
icon ?: React . ElementType ;
78
78
tooltip ?: string ;
79
+ variant ?: string ;
80
+ size ?: string ;
79
81
reverse ?: boolean ;
80
82
}
81
83
82
84
const Button = React . forwardRef < HTMLButtonElement , ButtonProps > (
83
85
(
84
86
{
85
87
className,
86
- variant,
88
+ variant = "default" ,
87
89
size = "sm" ,
88
90
asChild = false ,
89
91
icon : Icon ,
You can’t perform that action at this time.
0 commit comments