13 lines
317 B
Vue
13 lines
317 B
Vue
<script lang="ts" setup>
|
|
import { cn } from "@mykopkb/core/utils/cn";
|
|
import { textarea } from "@mykopkb/core/styles/textarea.styles";
|
|
|
|
const { class: className, ...props } = defineProps<{
|
|
class?: string;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<textarea :class="cn(textarea, className)" v-bind="{ ...props }" />
|
|
</template>
|