sdy

remove defaultimage

1 import React from "react"; 1 import React from "react";
2 import styled from "styled-components"; 2 import styled from "styled-components";
3 -import DefaultIcon from "../imgs/defaultProfile.jpg";
4 3
5 const ProfileIconBox = styled.div` 4 const ProfileIconBox = styled.div`
6 display: flex; 5 display: flex;
...@@ -18,7 +17,7 @@ const ProfileIcon = styled.img` ...@@ -18,7 +17,7 @@ const ProfileIcon = styled.img`
18 export default ({ avatar }) => { 17 export default ({ avatar }) => {
19 return ( 18 return (
20 <ProfileIconBox className="ProfileIconBox"> 19 <ProfileIconBox className="ProfileIconBox">
21 - <ProfileIcon src={DefaultIcon} avatar={avatar} /> 20 + <ProfileIcon src={""} avatar={avatar} />
22 </ProfileIconBox> 21 </ProfileIconBox>
23 ); 22 );
24 }; 23 };
......