@yandex/ui
Version:
Yandex UI components
15 lines (14 loc) • 651 B
JavaScript
import { compose, composeU } from '@bem-react/core';
// base
import { Popup as PopupDesktop } from '../Popup@desktop';
// _nonvisual
import { withNonvisual } from '../_nonvisual/Popup_nonvisual';
// _target
import { withTargetAnchor } from '../_target/Popup_target_anchor';
// _theme
import { withThemeClear } from '../_theme/Popup_theme_clear';
import { withThemeNormal } from '../_theme/Popup_theme_normal';
// _view
import { withViewDefault } from '../_view/Popup_view_default';
export * from '../Popup@desktop';
export var Popup = compose(withNonvisual, withTargetAnchor, withViewDefault, composeU(withThemeClear, withThemeNormal))(PopupDesktop);