mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18:01 +08:00
2cdf586291
* chore: fix lint * chore: fix lint * test: fix 16 * fix: lint
23 lines
573 B
TypeScript
23 lines
573 B
TypeScript
import React, { useState } from 'react';
|
|
import { ConfigProvider, FloatButton, Slider } from 'antd';
|
|
import type { AliasToken } from 'antd/es/theme/interface';
|
|
|
|
const App: React.FC = () => {
|
|
const [radius, setRadius] = useState<number>(0);
|
|
|
|
const token: Partial<AliasToken> = {
|
|
borderRadius: radius,
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Slider min={0} max={20} style={{ margin: 16 }} onChange={setRadius} />
|
|
<ConfigProvider theme={{ token }}>
|
|
<FloatButton shape="square" badge={{ dot: true }} />
|
|
</ConfigProvider>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|