@devrongx/games 0.3.3 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devrongx/games",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "Game UI components for sports prediction markets",
5
5
  "license": "MIT",
6
6
  "main": "./src/index.ts",
@@ -3,7 +3,7 @@
3
3
 
4
4
  import { useRef, useMemo, useEffect } from "react";
5
5
  import { motion } from "framer-motion";
6
- import { Calendar, MapPin, Loader2, Trophy, Zap, Target, Users } from "lucide-react";
6
+ import { Calendar, MapPin, Loader2, Trophy, Zap, Target, Users, Volume2 } from "lucide-react";
7
7
  import { useTDMatches } from "./useTDMatches";
8
8
  import type { ITDMatch } from "./types";
9
9
 
@@ -248,6 +248,19 @@ function MatchCard({ match }: { match: ITDMatch }) {
248
248
  <span className="text-[7px] text-white" style={OUTFIT}>0.4</span>
249
249
  </span>
250
250
  </div>
251
+ <div
252
+ className="flex items-center gap-1.5 px-2 py-1 rounded-lg"
253
+ style={{ background: "rgba(248,60,197,0.06)" }}
254
+ >
255
+ <Volume2 size={9} style={{ color: "#f83cc5" }} />
256
+ <span className="text-[8px] barlowcondensedBold tracking-wide text-white flex-1">
257
+ Crowd is Wrong
258
+ </span>
259
+ <span className="flex items-center gap-0.5">
260
+ <svg width="8" height="8" viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="16" fill="#2775CA"/><path d="M20.5 18.2c0-2.1-1.3-2.8-3.8-3.1-1.8-.3-2.2-.7-2.2-1.5s.7-1.3 1.8-1.3c1 0 1.6.4 1.9 1.1.1.1.2.2.3.2h.7c.2 0 .3-.1.3-.3-.3-1-1-1.8-2.1-2v-1.2c0-.2-.1-.3-.3-.3h-.6c-.2 0-.3.1-.3.3v1.2c-1.5.2-2.5 1.2-2.5 2.4 0 2 1.2 2.7 3.7 3 1.7.3 2.3.8 2.3 1.6 0 1-.8 1.6-2 1.6-1.5 0-2-.6-2.2-1.4 0-.1-.2-.2-.3-.2h-.7c-.2 0-.3.1-.3.3.3 1.2 1 2 2.5 2.3v1.2c0 .2.1.3.3.3h.6c.2 0 .3-.1.3-.3v-1.2c1.6-.2 2.6-1.3 2.6-2.6z" fill="#fff"/></svg>
261
+ <span className="text-[7px] text-white" style={OUTFIT}>0.4</span>
262
+ </span>
263
+ </div>
251
264
  </div>
252
265
  )}
253
266
  </div>