import React from "react"; /** * Banner showing policy status and restrictions. * Shows warning when Mature content is enabled. */ export function PolicyBanner({ contentRating, restrictions = [], onDismiss }) { if (contentRating !== "mature") { return null; } return (
⚠️ Mature content enabled
This project may generate sensitive imagery. Use only for permitted artistic/educational contexts. Exports may have restrictions.
{restrictions.length > 0 && (
    {restrictions.map((r, i) => (
  • {r}
  • ))}
)}
{onDismiss && ()}
); }