Files
vue-bits/src/constants/code/TextAnimations/gradientTextCode.ts
2025-07-20 23:42:47 +03:00

19 lines
523 B
TypeScript

import code from '@content/TextAnimations/GradientText/GradientText.vue?raw';
import { createCodeObject } from '@/types/code';
export const gradientText = createCodeObject(code, 'TextAnimations/GradientText', {
usage: `<template>
<GradientText
text="Add a splash of color!"
:colors="['#ffaa40', '#9c40ff', '#ffaa40']"
:animation-speed="8"
:show-border="false"
class-name="your-custom-class"
/>
</template>
<script setup lang="ts">
import GradientText from "./GradientText.vue";
</script>`
});