All files / components/card/card-header card-header-icon.styled.js

0% Statements 0/8
0% Branches 0/4
0% Functions 0/2
0% Lines 0/2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20                                       
import styled from 'styled-components'
 
const CardHeaderIconStyled = styled.div`
width: 40px;
height: 40px;
border-radius: 100px;
background-color: #e7f0f7;
display: flex;
align-items: center;
justify-content: center;
margin-left:20px;
min-width: 40px;
 
img {
  width:24px;
}
`
 
export default CardHeaderIconStyled