UNPKG

react-elegant-ui

Version:

Elegant UI components, made by BEM best practices for react

6 lines 278 B
import { Button as ButtonCommon, cnButton } from './Button'; import { withFocusVisible } from '../../hocs/withFocusVisible'; import './Button@desktop.css'; export * from './Button'; export var Button = withFocusVisible(cnButton())(ButtonCommon); Button.displayName = cnButton();