File tree Expand file tree Collapse file tree
packages/react-components/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ function AlertDialogCancel({
136136} : React . ComponentProps < typeof AlertDialogPrimitive . Cancel > ) {
137137 return (
138138 < AlertDialogPrimitive . Cancel
139- className = { cn ( buttonVariants ( { variant : "secondary " } ) , className ) }
139+ className = { cn ( buttonVariants ( { variant : "outline " } ) , className ) }
140140 { ...props }
141141 />
142142 )
Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ function CalendarDayButton({
189189 < Button
190190 ref = { ref }
191191 variant = "ghost"
192- size = "icon "
192+ size = "small "
193193 data-day = { day . date . toLocaleDateString ( ) }
194194 data-selected-single = {
195195 modifiers . selected &&
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ type PaginationLinkProps = {
4545function PaginationLink ( {
4646 className,
4747 isActive,
48- size = "icon " ,
48+ size = "small " ,
4949 ...props
5050} : PaginationLinkProps ) {
5151 return (
@@ -72,7 +72,7 @@ function PaginationPrevious({
7272 return (
7373 < PaginationLink
7474 aria-label = "Go to previous page"
75- size = "default "
75+ size = "regular "
7676 className = { cn ( "gap-1 px-2.5 sm:pl-2.5" , className ) }
7777 { ...props }
7878 >
@@ -89,7 +89,7 @@ function PaginationNext({
8989 return (
9090 < PaginationLink
9191 aria-label = "Go to next page"
92- size = "default "
92+ size = "regular "
9393 className = { cn ( "gap-1 px-2.5 sm:pr-2.5" , className ) }
9494 { ...props }
9595 >
Original file line number Diff line number Diff line change @@ -263,7 +263,7 @@ function SidebarTrigger({
263263 data-sidebar = "trigger"
264264 data-slot = "sidebar-trigger"
265265 variant = "ghost"
266- size = "icon "
266+ size = "small "
267267 className = { cn ( "size-7" , className ) }
268268 onClick = { ( event ) => {
269269 onClick ?.( event ) ;
Original file line number Diff line number Diff line change @@ -12,12 +12,6 @@ if (typeof window !== "undefined" && document.getElementById("root")) {
1212}
1313
1414// UI Components
15- export {
16- Accordion ,
17- AccordionContent ,
18- AccordionItem ,
19- AccordionTrigger ,
20- } from "./components/ui/accordion" ;
2115export { Alert , AlertDescription , AlertTitle } from "./components/ui/alert" ;
2216export {
2317 AlertDialog ,
@@ -52,13 +46,7 @@ export {
5246 CardHeader ,
5347 CardTitle ,
5448} from "./components/ui/card" ;
55- export {
56- Carousel ,
57- CarouselContent ,
58- CarouselItem ,
59- CarouselNext ,
60- CarouselPrevious ,
61- } from "./components/ui/carousel" ;
49+
6250export { Checkbox } from "./components/ui/checkbox" ;
6351export {
6452 Collapsible ,
You can’t perform that action at this time.
0 commit comments