first init

This commit is contained in:
ISMAIL MASSERAN
2026-06-08 11:37:14 +08:00
commit 94ecbe5887
1058 changed files with 87732 additions and 0 deletions
@@ -0,0 +1,21 @@
<script lang="ts" setup>
import { cn } from "@mykopkb/core/utils/cn";
import { separator } from "@mykopkb/core/styles/separator.styles";
const {
class: className,
orientation = "horizontal",
decorative = true,
...props
} = defineProps<{
class?: string;
asChild?: boolean;
orientation?: "vertical" | "horizontal" | "responsive";
decorative?: boolean;
}>();
</script>
<template>
<div data-part="separator" :data-decorative="decorative" :data-orientation="orientation"
:class="cn(separator, className)" v-bind="{ ...props }" />
</template>
+1
View File
@@ -0,0 +1 @@
export { default as Separator } from "./Separator.vue";