summaryrefslogtreecommitdiff
path: root/packages/create-astro/src/components/Spacer.tsx
blob: 1e4e145613e64645b74d9747f184e4f9b8a4d2d8 (plain) (blame)
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;