'use client' import React from 'react' import { cn } from '../../../utils/cn' export interface AIWarningsSectionProps { warnings: string[] title?: string className?: string } export const AIWarningsSection: React.FC = ({ warnings, title = 'AI Warnings', className, }) => { if (!warnings || warnings.length === 0) { return null } return (

{title}

    {warnings.map((warning, index) => (
  • {warning}
  • ))}
) }