-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(search): add not pools found comp.
- Loading branch information
Showing
5 changed files
with
263 additions
and
4 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,31 @@ | ||
// @flow | ||
import React from 'react'; | ||
import styled from 'styled-components'; | ||
import stakingIllustration from '../assets/staking-illustration.svg'; | ||
|
||
const Container = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
gap: 16px; | ||
min-height: 60vh; | ||
& .title { | ||
font-weight: 500; | ||
font-size: 18px; | ||
line-height: 26px; | ||
text-align: center; | ||
} | ||
`; | ||
|
||
function NoStakePoolsFound() { | ||
return ( | ||
<Container> | ||
<img className="staking-img" src={stakingIllustration} alt="Staking Pools" /> | ||
<h1 className="title">No stake pools found</h1> | ||
</Container> | ||
); | ||
} | ||
|
||
export default NoStakePoolsFound; |
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