import React from 'react' import { Button } from "@/components/ui/button" import { Card, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" import { searchGroups, type SearchGroup } from '@/lib/utils' import { cn } from '@/lib/utils' interface SearchGroupsProps { selectedGroup: string onGroupSelect: (group: SearchGroup) => void } export function SearchGroups({ selectedGroup, onGroupSelect }: SearchGroupsProps) { return (