summaryrefslogtreecommitdiff
path: root/packages/create-astro/src/components/Spacer.tsx
blob: 15ef71d7cb7eaf234d95190099b6d254083b2581 (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;