Files
litlyx/lyx-ui/app.vue
Emily 3eb32145aa .
2024-07-22 16:31:54 +02:00

13 lines
397 B
Vue

<template>
<div class="p-10 bg-gray-700">
<LyxUiCard>
<div class="flex gap-4 items-center">
<LyxUiButton type="primary"> primary </LyxUiButton>
<LyxUiButton type="secondary"> secondary </LyxUiButton>
<LyxUiButton type="outline"> outline </LyxUiButton>
<LyxUiButton type="danger"> danger </LyxUiButton>
</div>
</LyxUiCard>
</div>
</template>