Files
remark42/web/app/components/auth-panel/index.js
T
Igor AdamenkoandUmputun 6f1b9037d5 Dark theme (#228)
* add with-theme hoc

* add dark theme styles for components

* add toggle theme button to the dev demo page

* add info about widget themes to README
2018-12-15 17:10:41 -06:00

21 lines
672 B
JavaScript

import withTheme from 'components/with-theme';
import AuthPanel from './auth-panel';
export default withTheme(AuthPanel);
require('./auth-panel.scss');
require('./__column/auth-panel__column.scss');
require('./__pseudo-link/auth-panel__pseudo-link.scss');
require('./__select/auth-panel__select.scss');
require('./__select-label/auth-panel__select-label.scss');
require('./__sort/auth-panel__sort.scss');
require('./__user-id/auth-panel__user-id.scss');
require('./__sign-out/auth-panel__sign-out.scss');
require('./_theme/_dark/auth-panel_theme_dark.scss');
require('./_theme/_light/auth-panel_theme_light.scss');
require('./_logged-in/auth-panel_logged-in.scss');