chore(components): move utils imports before components

This commit is contained in:
Benjamin Canac
2024-10-11 14:15:44 +02:00
parent f6631ff7bc
commit 296ae456c9
11 changed files with 15 additions and 15 deletions

View File

@@ -42,10 +42,10 @@ import { type Ref, computed, ref, inject } from 'vue'
import { useForwardProps } from 'radix-vue'
import { useComponentIcons } from '../composables/useComponentIcons'
import { useButtonGroup } from '../composables/useButtonGroup'
import UIcon from './Icon.vue'
import ULink from './Link.vue'
import { omit } from '../utils'
import { pickLinkProps } from '../utils/link'
import UIcon from './Icon.vue'
import ULink from './Link.vue'
const props = defineProps<ButtonProps>()
const slots = defineSlots<ButtonSlots>()