UNPKG

@botonic/react

Version:

Build Chatbots using React

21 lines (19 loc) 457 B
import styled from 'styled-components'; // TODO: Review how define all this styles export const MessageBubble = styled.div ` margin: 0px 0px 5px 0px; `; export const RatingSelectorContainer = styled.div ` display: flex; justify-content: center; gap: 8px; margin-top: 16px; & > div { cursor: ${props => (props.isSent ? 'default' : 'pointer')}; svg { height: 27px; width: 27px; } } `; //# sourceMappingURL=styles.js.map