general-eval-card / components /replay-intro-button.tsx
Anka
Add Help: intro tour, tutorials, stakeholder guides, citation info, footer
f737def
Raw
History Blame
443 Bytes
"use client"
import { Play } from "lucide-react"
import { useQuickStart } from "@/components/quick-start"
import { cn } from "@/lib/utils"
export function ReplayIntroButton({ className }: { className?: string }) {
const { open } = useQuickStart()
return (
<button type="button" onClick={open} className={cn("btn-ec outline", className)}>
<Play className="h-3.5 w-3.5" aria-hidden />
Replay the intro
</button>
)
}