tatuka-components
Version:
this is a readme text
11 lines (10 loc) • 430 B
TypeScript
import { TextAnimationCustomProps } from '../types/component-types';
import React from 'react';
import "../../../dist/style/styles.css";
declare function TextAnimation({ text, customOptions, onAnimationEnd, }: {
text: string;
customOptions?: TextAnimationCustomProps;
onAnimationEnd?: () => void;
}): React.JSX.Element;
declare const _default: React.MemoExoticComponent<typeof TextAnimation>;
export default _default;