| import React from 'react'; | |
| import { Checkbox, ConfigProvider } from 'antd'; | |
| const App: React.FC = () => ( | |
| <> | |
| <ConfigProvider | |
| theme={{ | |
| components: { | |
| Checkbox: { | |
| lineWidth: 6, | |
| }, | |
| }, | |
| }} | |
| > | |
| <Checkbox checked /> | |
| <Checkbox /> | |
| </ConfigProvider> | |
| <Checkbox checked /> | |
| <Checkbox /> | |
| </> | |
| ); | |
| export default App; | |