UNPKG

@shopify/cli-kit

Version:

A set of utilities, interfaces, and models that are common across all the platform features

11 lines (10 loc) 304 B
import React from 'react'; interface TextAnimationProps { text: string; maxWidth?: number; } /** * `TextAnimation` applies a rainbow animation to text. */ declare const TextAnimation: React.MemoExoticComponent<({ text, maxWidth }: TextAnimationProps) => JSX.Element>; export { TextAnimation };