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

24 lines
562 B
TypeScript

import code from '@content/TextAnimations/TextPressure/TextPressure.vue?raw';
import { createCodeObject } from '@/types/code';
export const textPressure = createCodeObject(code, 'TextAnimations/TextPressure', {
usage: `<template>
<TextPressure
text="Hello!"
:flex="true"
:alpha="false"
:stroke="false"
:width="true"
:weight="true"
:italic="true"
text-color="#ffffff"
stroke-color="#27FF64"
:min-font-size="36"
/>
</template>
<script setup lang="ts">
import TextPressure from "./TextPressure.vue";
</script>`
});