@datalayer/core
Version:
[](https://datalayer.io)
7 lines (6 loc) • 386 B
TypeScript
import React from 'react';
import { BaseProps } from '@datalayer/primer-addons';
export type TextRevealAnimationProps = BaseProps<HTMLSpanElement> & Omit<React.HTMLAttributes<HTMLSpanElement>, 'children'> & {
children: React.ReactChild;
};
export declare function TextRevealAnimation({ children, ...rest }: TextRevealAnimationProps): import("react/jsx-runtime").JSX.Element | null;