import {type BoxProps, type TextProps} from 'ink'; import {type ComponentTheme} from '../../theme.js'; const theme = { styles: { container: (): BoxProps => ({ gap: 1, }), frame: (): TextProps => ({ color: 'blue', }), label: (): TextProps => ({}), }, } satisfies ComponentTheme; export default theme; export type Theme = typeof theme;