windups
Version:
A unique typewriter effect library for React.
14 lines (13 loc) • 408 B
TypeScript
import * as React from "react";
declare type StyledTextProps = {
children: React.ReactNode;
fontStyle: string;
};
export declare function StyledText({ children }: StyledTextProps): JSX.Element;
declare type LinebreakerProps = {
children: React.ReactNode;
fontStyle: string;
width: number;
};
declare const Linebreaker: React.FC<LinebreakerProps>;
export default Linebreaker;