move button component to ui package

This commit is contained in:
Gregor Vostrak
2025-11-12 13:22:49 +01:00
parent 86d0497000
commit e7703aef64
21 changed files with 1100 additions and 529 deletions

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
import { Button } from '@/Components/ui/button';
import { Button } from '@/packages/ui/src';
const props = defineProps<{
icon: Component;

View File

@@ -1,7 +1,7 @@
<script setup lang="ts">
import { Switch } from '@/Components/ui/switch';
import { Popover, PopoverContent, PopoverTrigger } from '@/Components/ui/popover';
import { Button } from '@/Components/ui/button';
import { Button } from '@/packages/ui/src';
import {
Select,
SelectContent,