mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-09 12:27:43 +00:00
chore: cleanup
This commit is contained in:
@@ -1,13 +1,10 @@
|
||||
<script setup lang="ts">
|
||||
import { type HTMLAttributes, computed } from "vue";
|
||||
import {
|
||||
NavigationMenuRoot,
|
||||
type NavigationMenuRootEmits,
|
||||
type NavigationMenuRootProps,
|
||||
useForwardPropsEmits,
|
||||
} from "radix-vue";
|
||||
import NavigationMenuViewport from "./NavigationMenuViewport.vue";
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
const props = defineProps<
|
||||
NavigationMenuRootProps & { class?: HTMLAttributes["class"] }
|
||||
|
||||
@@ -1,12 +1,10 @@
|
||||
<script setup lang="ts">
|
||||
import { type HTMLAttributes, computed } from "vue";
|
||||
import {
|
||||
NavigationMenuContent,
|
||||
type NavigationMenuContentEmits,
|
||||
type NavigationMenuContentProps,
|
||||
useForwardPropsEmits,
|
||||
} from "radix-vue";
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
const props = defineProps<
|
||||
NavigationMenuContentProps & { class?: HTMLAttributes["class"] }
|
||||
|
||||
@@ -1,11 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
import { type HTMLAttributes, computed } from "vue";
|
||||
import {
|
||||
NavigationMenuIndicator,
|
||||
type NavigationMenuIndicatorProps,
|
||||
useForwardProps,
|
||||
} from "radix-vue";
|
||||
import { cn } from "@/lib/utils";
|
||||
import { type NavigationMenuIndicatorProps, useForwardProps } from "radix-vue";
|
||||
|
||||
const props = defineProps<
|
||||
NavigationMenuIndicatorProps & { class?: HTMLAttributes["class"] }
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script setup lang="ts">
|
||||
import { NavigationMenuItem, type NavigationMenuItemProps } from "radix-vue";
|
||||
import { type NavigationMenuItemProps } from "radix-vue";
|
||||
|
||||
const props = defineProps<NavigationMenuItemProps>();
|
||||
</script>
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<script setup lang="ts">
|
||||
import {
|
||||
NavigationMenuLink,
|
||||
type NavigationMenuLinkEmits,
|
||||
type NavigationMenuLinkProps,
|
||||
useForwardPropsEmits,
|
||||
|
||||
@@ -1,11 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
import { type HTMLAttributes, computed } from "vue";
|
||||
import {
|
||||
NavigationMenuList,
|
||||
type NavigationMenuListProps,
|
||||
useForwardProps,
|
||||
} from "radix-vue";
|
||||
import { cn } from "@/lib/utils";
|
||||
import { type NavigationMenuListProps, useForwardProps } from "radix-vue";
|
||||
|
||||
const props = defineProps<
|
||||
NavigationMenuListProps & { class?: HTMLAttributes["class"] }
|
||||
|
||||
@@ -1,13 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
import { type HTMLAttributes, computed } from "vue";
|
||||
import {
|
||||
NavigationMenuTrigger,
|
||||
type NavigationMenuTriggerProps,
|
||||
useForwardProps,
|
||||
} from "radix-vue";
|
||||
import { ChevronDownIcon } from "@radix-icons/vue";
|
||||
import { navigationMenuTriggerStyle } from ".";
|
||||
import { cn } from "@/lib/utils";
|
||||
import { type NavigationMenuTriggerProps, useForwardProps } from "radix-vue";
|
||||
|
||||
const props = defineProps<
|
||||
NavigationMenuTriggerProps & { class?: HTMLAttributes["class"] }
|
||||
|
||||
@@ -1,11 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
import { type HTMLAttributes, computed } from "vue";
|
||||
import {
|
||||
NavigationMenuViewport,
|
||||
type NavigationMenuViewportProps,
|
||||
useForwardProps,
|
||||
} from "radix-vue";
|
||||
import { cn } from "@/lib/utils";
|
||||
import { type NavigationMenuViewportProps, useForwardProps } from "radix-vue";
|
||||
|
||||
const props = defineProps<
|
||||
NavigationMenuViewportProps & { class?: HTMLAttributes["class"] }
|
||||
|
||||
Reference in New Issue
Block a user