1 2 3 4 5
import React, { FC } from 'react'; import { Box } from 'ink'; const Spacer: FC<{ width?: number }> = ({ width = 8 }) => <Box width={width} />; export default Spacer;