import React from "react"; /** * Badge showing content rating (SFW or Mature). * * Mature badge has warning styling (yellow/amber). */ export function ContentRatingBadge({ value, showLabel = true }) { if (value === "mature") { return ( {showLabel ? "Mature" : "M"} ); } return ( {showLabel ? "SFW" : "S"} ); }