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 (