mirror of
https://github.com/DavidHDev/vue-bits.git
synced 2026-03-07 06:29:30 -07:00
23 lines
537 B
TypeScript
23 lines
537 B
TypeScript
import code from '@content/TextAnimations/FuzzyText/FuzzyText.vue?raw';
|
|
import type { CodeObject } from '../../../types/code';
|
|
|
|
export const fuzzyText: CodeObject = {
|
|
cli: `npx jsrepo add https://vue-bits.dev/ui/TextAnimations/FuzzyText`,
|
|
usage: `<template>
|
|
<FuzzyText
|
|
text="404"
|
|
:font-size="140"
|
|
font-weight="900"
|
|
color="#fff"
|
|
:enable-hover="true"
|
|
:base-intensity="0.18"
|
|
:hover-intensity="0.5"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import FuzzyText from "./FuzzyText.vue";
|
|
</script>`,
|
|
code
|
|
};
|