Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions src/art/Anushka_Tile/Anushka_Tile.jsx
Original file line number Diff line number Diff line change
@@ -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 (
<div className={`${style.container} container`}>
{/* DO NOT edit the line above*/}

{/* your art blocks will come here */}
<div>
<div className={style.blocks}></div>

</div>

{/* do not edit the line below */}
<Credit data={data} />
</div>
);
}

export default Anushka_Tile;
11 changes: 11 additions & 0 deletions src/art/Anushka_Tile/style.module.css
Original file line number Diff line number Diff line change
@@ -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;
}