Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/iwatakeshi/chakra-next

A set of components to integrate with Chakra UI and Next.js
https://github.com/iwatakeshi/chakra-next

Last synced: 6 days ago
JSON representation

A set of components to integrate with Chakra UI and Next.js

Awesome Lists containing this project

README

        

# chakra-next

A set of components to integrate with Chakra UI and Next.js

## Usage

### Installation

```bash
npm add @iwatakeshi/chakra-next
```

### Components

> Note: All components will automatically wrap Chakra UI's components with Next's `Link` when `href` is a relative url.

#### Link

```tsx
import { Link } from "@iwatakeshi/chakra-next";

;
// =>
```

#### Button

```tsx
import { Button } from "@iwatakeshi/chakra-next";

;
// =>
```

### IconButton

```tsx
import { IconButton } from "@iwatakeshi/chakra-next";

;
// =>
```

### Image

```tsx
import { Image } from "@iwatakeshi/chakra-next";

;
```