You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.js 491B

123456789101112131415161718192021
  1. import { ColorPalette, createStyleSheet } from '../../styles';
  2. /**
  3. * The React {@code Component} styles of the feature base/dialog.
  4. */
  5. export default createStyleSheet({
  6. /**
  7. * The style of the {@code Text} in a {@code Dialog} button.
  8. */
  9. buttonText: {
  10. color: ColorPalette.blue
  11. },
  12. /**
  13. * The style of the {@code Text} in a {@code Dialog} button which is
  14. * disabled.
  15. */
  16. disabledButtonText: {
  17. color: ColorPalette.darkGrey
  18. }
  19. });