import React from 'react'; export const Badge: React.FC<{ children: React.ReactNode; color?: string }> = ({ children, color = '#FF1493' }) => ( <span style={{ display: 'inline-flex', alignItems: 'center', padding: '4px 10px', borderRadius: 9999, background: color + '15', color, fontSize: 12, fontWeight: 700 }}> {children} </span> );