import { Badge } from "@/src/components/ui/badge"; export const PromptVariableListPreview = ({ variables, }: { variables: string[]; }) => { if (variables.length === 0) { return null; } return (

The following variables are available:

{variables.map((variable) => ( {variable} ))}
); };