Skip to content

Commit 8196102

Browse files
committed
up
1 parent bf4395f commit 8196102

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/runtime/components/Textarea.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ type Textarea = ComponentConfig<typeof theme, AppConfig, 'textarea'>
99
1010
type TextareaValue = string | number | null
1111
12-
export interface TextareaProps<T extends AcceptableValue = AcceptableValue> extends UseComponentIconsProps {
12+
export interface TextareaProps<T extends TextareaValue = TextareaValue> extends UseComponentIconsProps {
1313
/**
1414
* The element or component this component should render as.
1515
* @defaultValue 'div'
@@ -69,7 +69,7 @@ export interface TextareaSlots {
6969

7070
<script setup lang="ts" generic="T extends TextareaValue">
7171
import { ref, computed, onMounted, nextTick, watch } from 'vue'
72-
import { Primitive, type AcceptableValue } from 'reka-ui'
72+
import { Primitive } from 'reka-ui'
7373
import { useVModel } from '@vueuse/core'
7474
import { useAppConfig } from '#imports'
7575
import { useComponentIcons } from '../composables/useComponentIcons'

0 commit comments

Comments
 (0)