const Stamp = ({ text, color = '#C13B2E', size = 12 }) => (
  <span className="stamp" style={{
    fontFamily: 'var(--font-mono)',
    fontSize: size,
    fontWeight: 700,
    color: color,
    border: `2px dashed ${color}`,
    padding: '2px 8px',
    letterSpacing: '0.08em',
    textTransform: 'uppercase',
    display: 'inline-block',
    transform: 'rotate(-2deg)',
  }}>{text}</span>
);

window.Stamp = Stamp;
