@botonic/react
Version:
Build Chatbots using React
25 lines (23 loc) • 709 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RatingSelectorContainer = exports.MessageBubble = void 0;
const tslib_1 = require("tslib");
const styled_components_1 = tslib_1.__importDefault(require("styled-components"));
// TODO: Review how define all this styles
exports.MessageBubble = styled_components_1.default.div `
margin: 0px 0px 5px 0px;
`;
exports.RatingSelectorContainer = styled_components_1.default.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