import { ColorPalette, createStyleSheet } from '../../styles';
/**
* The React Component styles of the feature base/dialog.
*/
export default createStyleSheet({
/**
* The style of the Text in a Dialog button.
*/
buttonText: {
color: ColorPalette.blue
},
/**
* The style of the Text in a Dialog button which is
* disabled.
*/
disabledButtonText: {
color: ColorPalette.darkGrey
}
});