diff options
author | 2021-05-03 12:26:10 -0600 | |
---|---|---|
committer | 2021-05-03 12:26:10 -0600 | |
commit | 94038d329705acb79a0f804458821d43f59121db (patch) | |
tree | 0f11c52b13a6de9344a83c900466b1bceb888bbe /packages/create-astro/src/components/Spacer.tsx | |
parent | c93201a909105bb0ef75278d9635de4b5b8734e7 (diff) | |
download | astro-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.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; |