cometchat-react-ui-kit2
Version:
CometChat UI Kit for React App
23 lines (22 loc) • 709 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.messageStickerBubbleBlockStyle = exports.messageStickerBlockStyle = void 0;
var messageStickerBlockStyle = function messageStickerBlockStyle(props) {
return {
padding: "0",
border: props.style.border,
borderRadius: props.style.borderRadius,
background: props.style.background
};
};
exports.messageStickerBlockStyle = messageStickerBlockStyle;
var messageStickerBubbleBlockStyle = function messageStickerBubbleBlockStyle(props) {
return {
margin: "0",
maxWidth: props.style.width,
height: props.style.height
};
};
exports.messageStickerBubbleBlockStyle = messageStickerBubbleBlockStyle;