ant-design/components/input/demo/borderless.md

24 lines
285 B
Markdown
Raw Normal View History

---
order: 20
title:
zh-CN: 无边框
en-US: Borderless
---
## zh-CN
没有边框。
## en-US
No border.
```tsx
import { Input } from 'antd';
2022-05-23 14:37:16 +08:00
import React from 'react';
const App: React.FC = () => <Input placeholder="Borderless" bordered={false} />;
export default App;
```