import { useCounter } from '../hooks/useCounter.js' import BigText from 'ink-big-text' import Gradient from 'ink-gradient' import React from 'react' const titleText = 'Create EVMts App' const loadingTitleText = 'Creating EVMts App' type Props = { loading?: boolean } /** * A fancy pastel gradiant title with an animation for the create-evmts-app */ export const FancyCreateTitle: React.FC = ({ loading }) => { const animationSpeed = 2 // WARNING: If you get rid of this a set interval will not exist and the cli might // start exiting early!!! const { count: i } = useCounter(titleText.length / animationSpeed) const text = `${loading ? loadingTitleText : titleText}${ loading ? '.'.repeat(Math.floor(i * 0.15) % 4) : '' }`.slice(0, i + 1) return ( ) }