From 03e834c3c085f213675cdad41c6907984d65f6fa Mon Sep 17 00:00:00 2001 From: anushka00 Date: Sun, 23 May 2021 01:19:10 +0530 Subject: [PATCH] added tile art --- src/art/Anushka_Tile/Anushka_Tile.jsx | 31 +++++++++++++++++++++++++++ src/art/Anushka_Tile/style.module.css | 11 ++++++++++ 2 files changed, 42 insertions(+) create mode 100644 src/art/Anushka_Tile/Anushka_Tile.jsx create mode 100644 src/art/Anushka_Tile/style.module.css diff --git a/src/art/Anushka_Tile/Anushka_Tile.jsx b/src/art/Anushka_Tile/Anushka_Tile.jsx new file mode 100644 index 0000000..02229fa --- /dev/null +++ b/src/art/Anushka_Tile/Anushka_Tile.jsx @@ -0,0 +1,31 @@ +import style from "./style.module.css"; +import { Credit } from "../../components/Credit/index"; + +// Replace ComponentName with YourName followed by ArtName. +// For example, SalilReactLogo or SalilNaikReactLogo +// component name, file name and folder name should be same. + +function Anushka_Tile() { + // Enter your name, github url and art-name below + let data = { + name: "Anushka", + "gh-link": "https://github.com/anushka00", + "art-name": "tiles", + }; + return ( +
+ {/* DO NOT edit the line above*/} + + {/* your art blocks will come here */} +
+
+ +
+ + {/* do not edit the line below */} + +
+ ); +} + +export default Anushka_Tile; diff --git a/src/art/Anushka_Tile/style.module.css b/src/art/Anushka_Tile/style.module.css new file mode 100644 index 0000000..21967ec --- /dev/null +++ b/src/art/Anushka_Tile/style.module.css @@ -0,0 +1,11 @@ +.container { + background-color: pink; +} +.blocks +{ + height: 60px; + width:60px; + background-color: brown; + box-shadow: 36px 0 red 67px 0 pink; + border: 23px; +}