Skip to content

Commit 83c84e8

Browse files
committed
2 parents fc312ef + 81ccec4 commit 83c84e8

5 files changed

Lines changed: 7 additions & 19 deletions

File tree

packages/react-components/src/components/ui/alert-dialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
)

packages/react-components/src/components/ui/calendar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 &&

packages/react-components/src/components/ui/pagination.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ type PaginationLinkProps = {
4545
function 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
>

packages/react-components/src/components/ui/sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

packages/react-components/src/index.tsx

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff 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";
2115
export { Alert, AlertDescription, AlertTitle } from "./components/ui/alert";
2216
export {
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+
6250
export { Checkbox } from "./components/ui/checkbox";
6351
export {
6452
Collapsible,

0 commit comments

Comments
 (0)