first init
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<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>
|
||||
@@ -0,0 +1 @@
|
||||
export { default as Textarea } from "./Textarea.vue";
|
||||
Reference in New Issue
Block a user