botframework-webchat-component
Version:
React component of botframework-webchat
23 lines • 801 B
TypeScript
import { StrictStyleOptions } from 'botframework-webchat-api';
export default function createErrorNotificationStyle({ connectivityIconPadding, connectivityMarginLeftRight, connectivityMarginTopBottom, connectivityTextSize, failedConnectivity, primaryFont }: StrictStyleOptions): {
alignItems: string;
color: string | number;
display: string;
fontFamily: string;
fontSize: string | number;
fontWeight: string;
marginBottom: number;
marginLeft: number;
marginRight: number;
marginTop: number;
'& > svg': {
fill: string | number;
'&:not(.webchat__error--rtl)': {
paddingRight: number;
};
'&.webchat__error--rtl': {
paddingLeft: number;
};
};
};
//# sourceMappingURL=ErrorNotification.d.ts.map