diff --git a/src/components/Diamond.scss b/src/components/Diamond.scss new file mode 100644 index 0000000..a98a0f9 --- /dev/null +++ b/src/components/Diamond.scss @@ -0,0 +1,5 @@ +.Diamond { + margin-bottom: 1rem; + margin-left: 2rem; + margin-right: 2rem; +} diff --git a/src/components/Diamond.tsx b/src/components/Diamond.tsx new file mode 100644 index 0000000..c96d2be --- /dev/null +++ b/src/components/Diamond.tsx @@ -0,0 +1,16 @@ +export const Diamond = () => { + return ( + + + + ); +};