diff options
| author | Miguel Solorio <[email protected]> | 2025-06-13 00:59:45 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-13 07:59:45 +0000 |
| commit | f8a31f29aaeb31b2dfab4c18d750307308245a55 (patch) | |
| tree | 4f6d2ec09ad04d691ee5c102cd9accff57c7d1a2 /packages/cli/src/ui/components/AsciiArt.ts | |
| parent | 95e4a60a83dd8e710ef69f78b3b57de4b4703344 (diff) | |
Replace logo with custom ASCII (#958)
Diffstat (limited to 'packages/cli/src/ui/components/AsciiArt.ts')
| -rw-r--r-- | packages/cli/src/ui/components/AsciiArt.ts | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/packages/cli/src/ui/components/AsciiArt.ts b/packages/cli/src/ui/components/AsciiArt.ts new file mode 100644 index 00000000..e15704dd --- /dev/null +++ b/packages/cli/src/ui/components/AsciiArt.ts @@ -0,0 +1,27 @@ +/** + * @license + * Copyright 2025 Google LLC + * SPDX-License-Identifier: Apache-2.0 + */ + +export const shortAsciiLogo = ` + █████████ ██████████ ██████ ██████ █████ ██████ █████ █████ + ███░░░░░███░░███░░░░░█░░██████ ██████ ░░███ ░░██████ ░░███ ░░███ + ███ ░░░ ░███ █ ░ ░███░█████░███ ░███ ░███░███ ░███ ░███ +░███ ░██████ ░███░░███ ░███ ░███ ░███░░███░███ ░███ +░███ █████ ░███░░█ ░███ ░░░ ░███ ░███ ░███ ░░██████ ░███ +░░███ ░░███ ░███ ░ █ ░███ ░███ ░███ ░███ ░░█████ ░███ + ░░█████████ ██████████ █████ █████ █████ █████ ░░█████ █████ + ░░░░░░░░░ ░░░░░░░░░░ ░░░░░ ░░░░░ ░░░░░ ░░░░░ ░░░░░ ░░░░░ +`; + +export const longAsciiLogo = ` + ███ █████████ ██████████ ██████ ██████ █████ ██████ █████ █████ +░░░███ ███░░░░░███░░███░░░░░█░░██████ ██████ ░░███ ░░██████ ░░███ ░░███ + ░░░███ ███ ░░░ ░███ █ ░ ░███░█████░███ ░███ ░███░███ ░███ ░███ + ░░░███ ░███ ░██████ ░███░░███ ░███ ░███ ░███░░███░███ ░███ + ███░ ░███ █████ ░███░░█ ░███ ░░░ ░███ ░███ ░███ ░░██████ ░███ + ███░ ░░███ ░░███ ░███ ░ █ ░███ ░███ ░███ ░███ ░░█████ ░███ + ███░ ░░█████████ ██████████ █████ █████ █████ █████ ░░█████ █████ +░░░ ░░░░░░░░░ ░░░░░░░░░░ ░░░░░ ░░░░░ ░░░░░ ░░░░░ ░░░░░ ░░░░░ +`; |
