@acrsolutions/chat-components
Version:
Un set di componenti per la creazione di un'applicazione di messaggistica
17 lines (16 loc) • 440 B
JavaScript
import styled from 'styled-components';
export const StyledConvoIcon = styled.div `
width: 40px;
height: 40px;
background: ${(props) => props.theme.palette.secondary.main};
color: ${(props) => props.theme.palette.secondary.contrastText};
border-radius: 80px;
display: flex;
justify-content: center;
align-items: center;
flex-shrink: 0;
@media (max-width: 750px) {
width: 30px;
height: 30px;
}
`;