Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions app/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ export const metadata: Metadata = {
icon: "/zoo-logo.png",
shortcut: "/zoo-logo.png",
apple: "/zoo-logo.png",
shortcut: "/favicon-16x16.png",
apple: "/apple-touch-icon.png",
},
manifest: `${siteConfig.url}/site.webmanifest`,
}
Expand Down
8 changes: 6 additions & 2 deletions app/registry/default/ui/calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,12 @@ function Calendar({
...classNames,
}}
components={{
IconLeft: ({ ...props }) => <ChevronLeft className="h-4 w-4" />,
IconRight: ({ ...props }) => <ChevronRight className="h-4 w-4" />,
Chevron: ({ orientation }) =>
orientation === "left" ? (
<ChevronLeft className="h-4 w-4" />
) : (
<ChevronRight className="h-4 w-4" />
),
}}
{...props}
/>
Expand Down
8 changes: 6 additions & 2 deletions app/registry/new-york/ui/calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,12 @@ function Calendar({
...classNames,
}}
components={{
IconLeft: ({ ...props }) => <ChevronLeftIcon className="h-4 w-4" />,
IconRight: ({ ...props }) => <ChevronRightIcon className="h-4 w-4" />,
Chevron: ({ orientation }) =>
orientation === "left" ? (
<ChevronLeftIcon className="h-4 w-4" />
) : (
<ChevronRightIcon className="h-4 w-4" />
),
}}
{...props}
/>
Expand Down
Loading