Components
Toast
Brief notifications that appear temporarily to provide feedback.
Preview
✓Changes saved successfully
✕Something went wrong
ℹNew updates available
Usage
example.tsx
import { toast } from 'framejs-ui';// Show different toast typestoast.success('Changes saved successfully');toast.error('Something went wrong');toast.info('New updates available');toast.warning('Please review before submitting');// With optionstoast.success('Saved!', {duration: 5000,position: 'top-right',});