summaryrefslogtreecommitdiff
path: root/packages/create-astro/src/components/Spacer.tsx
diff options
context:
space:
mode:
authorGravatar Drew Powers <1369770+drwpow@users.noreply.github.com> 2021-05-03 12:26:10 -0600
committerGravatar GitHub <noreply@github.com> 2021-05-03 12:26:10 -0600
commit94038d329705acb79a0f804458821d43f59121db (patch)
tree0f11c52b13a6de9344a83c900466b1bceb888bbe /packages/create-astro/src/components/Spacer.tsx
parentc93201a909105bb0ef75278d9635de4b5b8734e7 (diff)
downloadastro-94038d329705acb79a0f804458821d43f59121db.tar.gz
astro-94038d329705acb79a0f804458821d43f59121db.tar.zst
astro-94038d329705acb79a0f804458821d43f59121db.zip
Format (#167)
Diffstat (limited to 'packages/create-astro/src/components/Spacer.tsx')
-rw-r--r--packages/create-astro/src/components/Spacer.tsx2
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;