mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 00:49:39 +08:00
12 lines
362 B
TypeScript
12 lines
362 B
TypeScript
|
import React from 'react';
|
||
|
import { InputNumber } from 'antd';
|
||
|
|
||
|
/** Test usage. Do not use in your production. */
|
||
|
const { _InternalPanelDoNotUseOrYouWillBeFired: InternalInputNumber } = InputNumber;
|
||
|
|
||
|
export default () => (
|
||
|
<div style={{ display: 'flex', flexDirection: 'column', rowGap: 16 }}>
|
||
|
<InternalInputNumber style={{ width: '100%' }} />
|
||
|
</div>
|
||
|
);
|