1import TextEngine from '@/components/Text/TextEngine';
2import { easings } from '@react-spring/web';
3
4export default function MyComponent() {
5 return (
6 <TextEngine
7 tag="p"
8 overflow
9 lineIn={{ y: 0, opacity: 1 }}
10 lineOut={{ y: 60, opacity: 0 }}
11 lineConfig={{ duration: 800, easing: easings.easeOutCubic }}
12 lineStagger={80}
13 >
14 The quick brown fox\njumps over the lazy dog
15 </TextEngine>
16 );
17}