-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c8ed77e
commit 0a4f528
Showing
6 changed files
with
148 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
.logint__in, | ||
.moret__in { | ||
display: flex; | ||
align-items: center; | ||
padding: 0px 7px; | ||
} | ||
.logint__in > .MuiSvgIcon-root, | ||
.moret__in > .MuiSvgIcon-root, | ||
img { | ||
margin-right: 5px; | ||
color: #2874f0; | ||
} | ||
.logint > hr, | ||
.moret > hr { | ||
margin-left: -10px; | ||
margin-top: 0px; | ||
margin-bottom: 0px; | ||
width: 108.5%; | ||
height: 0.5px; | ||
background-color: rgb(233, 233, 233); | ||
border: none; | ||
} | ||
.logint__in:hover, | ||
.moret__in:hover { | ||
background-color: rgb(245, 243, 243); | ||
cursor: pointer; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import React from 'react' | ||
import AccountCircleIcon from '@material-ui/icons/AccountCircle'; | ||
import FavoriteIcon from '@material-ui/icons/Favorite'; | ||
import ConfirmationNumberIcon from '@material-ui/icons/ConfirmationNumber'; | ||
import CardGiftcardIcon from '@material-ui/icons/CardGiftcard'; | ||
import StoreIcon from '@material-ui/icons/Store'; | ||
|
||
|
||
|
||
const LoginT = () => { | ||
return ( | ||
<div className="logint"> | ||
<div className="logint__in"> | ||
<h4>New Customer?</h4> | ||
<h4 style={{ color: '#2874f0' }}>Sign Up</h4> | ||
</div> | ||
<hr /> | ||
<div className="logint__in"> | ||
<AccountCircleIcon></AccountCircleIcon> | ||
<p>My Profile</p> | ||
</div> | ||
<hr /> | ||
<div className="logint__in"> | ||
<img src="//img1a.flixcart.com/www/linchpin/fk-cp-zion/img/plus_aef861.png" alt="plus" /> | ||
<p>Flipkart Plus Zone</p> | ||
</div> | ||
<hr /> | ||
<div className="logint__in"> | ||
<StoreIcon></StoreIcon> | ||
<p>Orders</p> | ||
</div> | ||
<hr /> | ||
<div className="logint__in"> | ||
<FavoriteIcon></FavoriteIcon> | ||
<p>Wishlist</p> | ||
</div> | ||
<hr /> | ||
<div className="logint__in"> | ||
<ConfirmationNumberIcon /> | ||
<p>Rewards</p> | ||
</div> | ||
<hr /> | ||
<div className="logint__in"> | ||
<CardGiftcardIcon /> | ||
<p>Gift Cards</p> | ||
</div> | ||
</div > | ||
) | ||
} | ||
|
||
export default LoginT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import React from 'react' | ||
import ShopIcon from '@material-ui/icons/Shop'; | ||
import NotificationsIcon from '@material-ui/icons/Notifications'; | ||
import BusinessCenterIcon from '@material-ui/icons/BusinessCenter'; | ||
import GetAppIcon from '@material-ui/icons/GetApp'; | ||
import LiveHelpIcon from '@material-ui/icons/LiveHelp'; | ||
import TrendingUpIcon from '@material-ui/icons/TrendingUp'; | ||
//import MonetizationOnIcon from '@material-ui/icons/MonetizationOn'; | ||
|
||
|
||
const MoreT = () => { | ||
return ( | ||
<div className="moret"> | ||
<div className="moret__in"> | ||
<NotificationsIcon /> | ||
<p>Notifications Preferences</p> | ||
</div> | ||
<hr /> | ||
<div className="moret__in"> | ||
<BusinessCenterIcon /> | ||
<p>Sell on Flipkart</p> | ||
</div> | ||
<hr /> | ||
<div className="moret__in"> | ||
<LiveHelpIcon /> | ||
<p>24*7 Customer Care</p> | ||
</div> | ||
<hr /> | ||
<div className="moret__in"> | ||
<TrendingUpIcon /> | ||
<p>Advertise</p> | ||
</div> | ||
<hr /> | ||
<div className="moret__in"> | ||
<GetAppIcon /> | ||
<p>Download app</p> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default MoreT |