From 327c7769da55550b6c6880f094310571fd157177 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Fri, 27 Oct 2023 22:45:38 +0200 Subject: [PATCH] chore(MeterGroup): unused import --- src/runtime/components/elements/MeterGroup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/components/elements/MeterGroup.ts b/src/runtime/components/elements/MeterGroup.ts index 6bfcfc52..937df2b4 100644 --- a/src/runtime/components/elements/MeterGroup.ts +++ b/src/runtime/components/elements/MeterGroup.ts @@ -1,6 +1,6 @@ import { h, cloneVNode, computed, toRef, defineComponent } from 'vue' import type { ComputedRef, VNode, SlotsType, PropType } from 'vue' -import { twMerge, twJoin } from 'tailwind-merge' +import { twJoin } from 'tailwind-merge' import UIcon from './Icon.vue' import Meter from './Meter.vue' import { useUI } from '../../composables/useUI'