-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Default Avatar): added default avatar for subscriptions
- Loading branch information
1 parent
4307321
commit 4388e77
Showing
4 changed files
with
26 additions
and
9 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,9 +1,11 @@ | ||
import styled from 'styled-components'; | ||
|
||
export default styled.img` | ||
display: block | ||
width: 89px; | ||
height: 89px; | ||
export default styled.div` | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
width: 90px; | ||
height: 90px; | ||
background-color: ${props => props.theme.contributorGrey}; | ||
border-radius: 50%; | ||
`; |
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,10 @@ | ||
import React from 'react'; | ||
|
||
export default () => ( | ||
<svg width="52.844" height="52.813"> | ||
<path | ||
fill="#707070" | ||
d="M38.756 28.633a16.538 16.538 0 1 0-23.2-.741A25.12 25.12 0 0 0 0 50.609a2.2 2.2 0 1 0 4.4 0 20.76 20.76 0 0 1 15.373-19.494 16.407 16.407 0 0 0 14.578.458 20.893 20.893 0 0 1 14.081 19.034 2.2 2.2 0 0 0 2.2 2.2 2.2 2.2 0 0 0 2.2-2.2 25.311 25.311 0 0 0-14.076-21.974zm-17.557-1.774a12.006 12.006 0 0 1-5.8-10.328 12.137 12.137 0 1 1 5.8 10.328z" | ||
/> | ||
</svg> | ||
); |
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