Metadata-Version: 2.4
Name: reflex-antd-ui
Version: 0.0.3
Summary: Reflex custom component antd
Author-email: CSM <xuetongchen@hotmail.com>
License: Apache-2.0
Keywords: reflex,reflex-custom-components
Classifier: Development Status :: 3 - Alpha
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: reflex>=0.9.0
Provides-Extra: dev
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"

# Reflex-Antd-UI

A custom Reflex component library, built on Ant Design 6.4.5.

## Installation

```bash
pip install reflex-antd-ui
```

## Quickstart

```python
import reflex as rx
import reflex_antd_ui as rxantd

def index() -> rx.Component:
    return rx.container(
        rxantd.button("Click Me", type="primary"),
        rxantd.input(placeholder="Please input..."),
    )
```

## Component Overview

| Category   | Components                                                                                                                                                                           |
| ---- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| General   | Button, Icon, Typography, FloatButton                                                                                                                                        |
| Layout   | Layout, Flex, Grid, Space, Divider, Splitter, Masonry                                                                                                                        |
| Navigation   | Anchor, Breadcrumb, Dropdown, Menu, Pagination, Steps, Tabs                                                                                                                  |
| Data Entry | AutoComplete, Cascader, Checkbox, ColorPicker, DatePicker, Form, Input, InputNumber, Mentions, Radio, Rate, Select, Slider, Switch, TimePicker, Transfer, TreeSelect, Upload |
| Data Display | Avatar, Badge, Calendar, Card, Carousel, Collapse, Descriptions, Empty, Image, Popover, QRCode, Segmented, Statistic, Table, Tag, Timeline, Tooltip, Tour, Tree              |
| Feedback   | Alert, Drawer, Message, Modal, Notification, Popconfirm, Progress, Result, Skeleton, Spin, Watermark                                                                         |
| Other   | App, ConfigProvider, Affix, BorderBeam                                                                                                                                       |
