diff options
Diffstat (limited to 'packages/create-astro/src/components/Spacer.tsx')
-rw-r--r-- | packages/create-astro/src/components/Spacer.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/create-astro/src/components/Spacer.tsx b/packages/create-astro/src/components/Spacer.tsx index 1e4e14561..15ef71d7c 100644 --- a/packages/create-astro/src/components/Spacer.tsx +++ b/packages/create-astro/src/components/Spacer.tsx @@ -1,5 +1,5 @@ import React, { FC } from 'react'; import { Box } from 'ink'; -const Spacer: FC<{ width?: number }> = ({ width = 8 }) => <Box width={width} /> +const Spacer: FC<{ width?: number }> = ({ width = 8 }) => <Box width={width} />; export default Spacer; |