mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-01 14:59:35 +08:00
0c3ba124b4
* type: delete visible & code optimization * add PureBackTop * fix: update snap * fix: cov * fix: add istanbul ignore * fix * feat: use visibilityHeight=0 replace visible=true * snap * cov * test case * test case * fix * fix cov * fix test * simplify code * rename function
11 lines
325 B
TypeScript
11 lines
325 B
TypeScript
import FloatButton from './FloatButton';
|
|
import FloatButtonGroup from './FloatButtonGroup';
|
|
import BackTop from './BackTop';
|
|
import PurePanel from './PurePanel';
|
|
|
|
FloatButton.BackTop = BackTop;
|
|
FloatButton.Group = FloatButtonGroup;
|
|
FloatButton._InternalPanelDoNotUseOrYouWillBeFired = PurePanel;
|
|
|
|
export default FloatButton;
|