Antd
antd
An enterprise-class UI design language and React components implementation
Component Libraries
ant
component
components
design
framework
frontend
react
react-component
ui
antd
Stars
99k
Weekly
3.2M
Open issues
1107
Bundle
~25 kB
Installation
npm install antdCode example
import { Button, Space } from "antd";
export function Example() {
return (
<Space>
<Button type="primary">Save</Button>
<Button>Cancel</Button>
</Space>
);
}Pros & cons
Pros
- Actively maintained by afc163
- 3.2M weekly downloads. Battle tested
- First-class TypeScript definitions
- MIT licensed
Considerations
- Adds roughly ~25 kB to your bundle
- Needs client-only rendering in SSR frameworks
- Not supported in React Native
- 1107 open issues on GitHub