@acrsolutions/chat-components
Version:
Un set di componenti per la creazione di un'applicazione di messaggistica
12 lines (11 loc) • 440 B
JavaScript
import styled from 'styled-components';
export const StyledUserDataWrapper = styled.div `
padding: 1rem;
background: ${(props) => props.$clicked ? props.theme.palette.primary.dark : 'transparent'};
color: ${({ $clicked, theme }) => $clicked ? theme.palette.primary.contrastText : theme.palette.dark};
cursor: pointer;
position: relative;
&:hover {
background: ${(props) => props.theme.palette.primary.main};
}
`;