# Vyrn Toast

Vyrn is a modern, customizable toast library for React and Next.js applications. It provides an easy-to-use API for displaying toast notifications with various styles and animations.

## Features

- 🚀 Easy to use
- 🎨 Customizable styles
- ♿ Accessible
- 🔧 TypeScript support
- ⚡ Lightweight
- 🔄 Smooth animations

## Compatibility

Vyrn is compatible with:
- **React**: 17.x, 18.x, and 19.x
- **Next.js**: 14.x, 15.x, and 16.x (with compatible React versions)
  - Next.js 14 requires React 18.2+
  - Next.js 15 supports React 18 and 19
  - Next.js 16 supports React 19

## Installation

```bash
npm install vyrn
# or
yarn add vyrn
```

## Quick Start

See [INTEGRATION.md](./INTEGRATION.md) for quick integration guide for React and Next.js.

## Local Testing

To test this library locally before publishing, see [TESTING.md](./TESTING.md) for detailed instructions.

Quick start:
```bash
# Build the library
npm run build

# Create symlink
npm link

# In your test project
npm link vyrn
```

Or use the included example app:
```bash
# Build the library
npm run build

# Setup example app
cd example
npm install
npm link vyrn
npm run dev
```

