UNPKG

botframework-webchat-component

Version:
27 lines (25 loc) 777 B
export default function createSendBoxStyle({ sendBoxBackground, sendBoxBorderBottom, sendBoxBorderLeft, sendBoxBorderRight, sendBoxBorderTop, sendBoxHeight }) { return { '&.webchat__send-box': { '& .webchat__send-box__button--align-bottom': { alignSelf: 'flex-end' }, '& .webchat__send-box__button--align-stretch': { alignSelf: 'stretch' }, '& .webchat__send-box__button--align-top': { alignSelf: 'flex-start' }, '& .webchat__send-box__main': { alignItems: 'stretch', backgroundColor: sendBoxBackground, borderBottom: sendBoxBorderBottom, borderLeft: sendBoxBorderLeft, borderRight: sendBoxBorderRight, borderTop: sendBoxBorderTop, minHeight: sendBoxHeight } } }; }