Skip to content

Commit

Permalink
Fix Button file location
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloLec committed May 11, 2024
1 parent af1db09 commit 5ab8c27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts" setup>
import { type HTMLAttributes, computed } from "vue"
import { CalendarCellTrigger, type CalendarCellTriggerProps, useForwardProps } from "radix-vue"
import { buttonVariants } from "@/components/ui/button"
import { buttonVariants } from "@/components/ui/shadcn/button"
import { cn } from "@/lib/utils.ts"
const props = defineProps<CalendarCellTriggerProps & { class?: HTMLAttributes["class"] }>()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { type HTMLAttributes, computed } from "vue"
import { CalendarNext, type CalendarNextProps, useForwardProps } from "radix-vue"
import { ChevronRight } from "lucide-vue-next"
import { cn } from "@/lib/utils.ts"
import { buttonVariants } from "@/components/ui/button"
import { buttonVariants } from "@/components/ui/shadcn/button"
const props = defineProps<CalendarNextProps & { class?: HTMLAttributes["class"] }>()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { type HTMLAttributes, computed } from "vue"
import { CalendarPrev, type CalendarPrevProps, useForwardProps } from "radix-vue"
import { ChevronLeft } from "lucide-vue-next"
import { cn } from "@/lib/utils.ts"
import { buttonVariants } from "@/components/ui/button"
import { buttonVariants } from "@/components/ui/shadcn/button"
const props = defineProps<CalendarPrevProps & { class?: HTMLAttributes["class"] }>()
Expand Down

0 comments on commit 5ab8c27

Please sign in to comment.