aboutsummaryrefslogtreecommitdiff
path: root/src/components/Tile
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-03-27 21:24:54 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-03-27 21:24:54 +0530
commitaef52169e3f0f9bde0e5f2dd21cbb316eaa34136 (patch)
tree0dde319375996da517814493defef1273400ad40 /src/components/Tile
parent10f7749d52df9a70e15a33cd76ba441f4b81a1a5 (diff)
laid out some very basic components, the tile component still needs to be worked upon
Diffstat (limited to 'src/components/Tile')
-rw-r--r--src/components/Tile/Tile.js20
-rw-r--r--src/components/Tile/Tile.scss17
2 files changed, 37 insertions, 0 deletions
diff --git a/src/components/Tile/Tile.js b/src/components/Tile/Tile.js
new file mode 100644
index 0000000..6fa7f2c
--- /dev/null
+++ b/src/components/Tile/Tile.js
@@ -0,0 +1,20 @@
+import React from "react";
+// import React, { useState } from "react";
+import "./Tile.css";
+
+const Tile = (props) => {
+ // const [,] = useState()
+
+ const style = {
+ height: props.height;
+ width: props.width;
+ backgroundColor: props.colorBG
+ // textColor: props.colorFG
+ }
+
+ return (
+ <div className={"tile"} style={style}></div>
+ )
+}
+
+export default Tile
diff --git a/src/components/Tile/Tile.scss b/src/components/Tile/Tile.scss
new file mode 100644
index 0000000..54a5ad7
--- /dev/null
+++ b/src/components/Tile/Tile.scss
@@ -0,0 +1,17 @@
+@import "../../../styles/theme";
+@import "../../../styles/view";
+
+.view {
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+ justify-content: center;;
+}
+
+.tile {
+ width: 5rem;
+ height: 5rem;
+
+ border: 1px dashed $defFG;
+ margin: 1rem;
+}