"use client" import { PencilLine } from "lucide-react" import { cn } from "@/lib/utils" export type CompactScoreFabProps = { /** Controls the fade + scale in/out. Driven from outside (the page's * existing `inFlowButtonVisible` state) -- this component owns no * hide/show-on-scroll logic of its own. */ visible: boolean /** Scrolls the user back to the player list (same action as the in-flow * button). No navigation, no new page. */ onClick: () => void } /** * Compact, corner-anchored "Score" quick button (FAB). * * Replaces the old full-width bottom banner (round-detail.tsx, removed * 2026-08-23 -- see CHANGELOG). Because it's small and pinned to the * bottom-right corner, it never needs to hide to avoid covering content -- * so there is no scrim, no reserved bottom spacer, and no slide-up * animation. It simply fades + scales in place. */ export function CompactScoreFab({ visible, onClick }: CompactScoreFabProps) { return ( ) } export default CompactScoreFab