From 2f51c22141d4628cddab719ca60d10e38507237f Mon Sep 17 00:00:00 2001 From: matt korwel Date: Thu, 5 Jun 2025 18:14:02 -0700 Subject: Title & Big text Updates (#781) --- packages/cli/src/ui/components/Header.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'packages/cli/src/ui/components/Header.tsx') diff --git a/packages/cli/src/ui/components/Header.tsx b/packages/cli/src/ui/components/Header.tsx index 1554f987..207673ff 100644 --- a/packages/cli/src/ui/components/Header.tsx +++ b/packages/cli/src/ui/components/Header.tsx @@ -18,15 +18,19 @@ const asciiArtLogo = ` ╚═════╝ ╚══════╝╚═╝ ╚═╝╚═╝╚═╝ ╚═══╝╚═╝ `; -export const Header: React.FC = () => ( +interface HeaderProps { + title?: string; +} + +export const Header: React.FC = ({ title = asciiArtLogo }) => ( <> {Colors.GradientColors ? ( - {asciiArtLogo} + {title} ) : ( - {asciiArtLogo} + {title} )} -- cgit v1.2.3