From a539feb798ebdc77a87985f5bc02ce3b6a92b3a7 Mon Sep 17 00:00:00 2001 From: Halit Aksoy Date: Sat, 23 Jul 2022 00:25:48 +0300 Subject: [PATCH] add space component --- src/components/Space.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/components/Space.tsx diff --git a/src/components/Space.tsx b/src/components/Space.tsx new file mode 100644 index 0000000..c1dfc5f --- /dev/null +++ b/src/components/Space.tsx @@ -0,0 +1,10 @@ +import * as React from 'react'; +import { FunctionComponent } from 'react'; + +const Space: FunctionComponent<{ width?: string, height?: string }> = ({ width, height }) => { + return ( +
+ ); +} + +export default Space; \ No newline at end of file