Component Boom

This commit is contained in:
David Haz
2025-07-10 15:36:38 +03:00
parent a4982577ad
commit 9b3465b04d
135 changed files with 16697 additions and 60 deletions

View File

@@ -0,0 +1,21 @@
import code from '@content/Components/PixelCard/PixelCard.vue?raw'
import type { CodeObject } from '../../../types/code'
export const pixelCard: CodeObject = {
cli: `npx jsrepo add https://vue-bits.dev/ui/Components/PixelCard`,
usage: `<template>
<PixelCard
variant="default"
:gap="5"
:speed="35"
colors="#f8fafc,#f1f5f9,#cbd5e1"
:no-focus="false"
class-name="custom-class"
></PixelCard>
</template>
<script setup lang="ts">
import PixelCard from "./PixelCard.vue";
</script>`,
code
}