import React from "react";
/**
*
*
* Re-usable tiny "i" badge that shows its `message` prop in a native
* browser tooltip (`title=`). Sized for use inline with headings or
* labels. Uses Tailwind classes only—no external libs required.
*/
export default function InfoTooltip({ message = "" }) {
if (!message) return null;
return (
i
);
}