import { Box, Text } from 'ink' import React from 'react' import { getTheme } from '../utils/theme' import { ASCII_LOGO } from '../constants/product' export function AsciiLogo(): React.ReactNode { const theme = getTheme() return ( {ASCII_LOGO} ) }