import React from 'react';
import { Info, Lightbulb, AlertCircle } from 'lucide-react';
interface HintProps {
children: React.ReactNode;
variant?: 'tip' | 'warning' | 'note';
}
const variantStyles = {
tip: {
container: 'bg-blue-50 text-blue-800 border-blue-200',
icon: