botframework-webchat-component
Version:
React component of botframework-webchat
19 lines (16 loc) • 370 B
text/typescript
import { StrictStyleOptions } from 'botframework-webchat-api';
export default function createSingleCardActivityStyle({
bubbleMaxWidth,
bubbleMinWidth,
paddingRegular
}: StrictStyleOptions) {
return {
'& > .bubble-box': {
maxWidth: bubbleMaxWidth,
minWidth: bubbleMinWidth
},
'& > .filler': {
minWidth: paddingRegular
}
};
}