* 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
18 lines
526 B
JavaScript
18 lines
526 B
JavaScript
import withTheme from 'components/with-theme';
|
|
import Dropdown from './dropdown';
|
|
|
|
export default withTheme(Dropdown);
|
|
|
|
export { default as DropdownItem } from './__item';
|
|
|
|
require('./dropdown.scss');
|
|
require('./_active/dropdown_active.scss');
|
|
|
|
require('./__item/dropdown__item.scss');
|
|
require('./__items/dropdown__items.scss');
|
|
require('./__title/dropdown__title.scss');
|
|
require('./__content/dropdown__content.scss');
|
|
|
|
require('./_theme/_dark/dropdown_theme_dark.scss');
|
|
require('./_theme/_light/dropdown_theme_light.scss');
|