Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
zce committed Nov 25, 2024
1 parent e48b01d commit ce80e46
Show file tree
Hide file tree
Showing 4 changed files with 477 additions and 628 deletions.
2 changes: 1 addition & 1 deletion examples/nextjs/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Link from 'next/link'
import { ThemeProvider } from 'next-themes'

import { ModeToggle } from '@/components/mode-toggle'
import { ThemeProvider } from '@/components/theme-provider'

import './globals.css'

Expand Down
2 changes: 1 addition & 1 deletion examples/nextjs/components/callout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export function Callout({ type = 'default', ...props }: { children?: React.ReactNode; type?: 'default' | 'warning' | 'danger' }) {
return (
<div
className={`my-6 flex items-start rounded-md border border-l-4 p-4${type === 'danger' ? ' border-red-900 bg-red-50' : type === 'warning' ? ' border-yellow-900 bg-yellow-50' : ''}`}
className={`my-6 flex items-start rounded-md border border-l-4 p-4${type === 'danger' ? 'border-red-900 bg-red-50' : type === 'warning' ? 'border-yellow-900 bg-yellow-50' : ''}`}
{...props}
/>
)
Expand Down
10 changes: 0 additions & 10 deletions examples/nextjs/components/theme-provider.tsx

This file was deleted.

Loading

0 comments on commit ce80e46

Please sign in to comment.