mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-18 23:42:24 +00:00
24 lines
516 B
TypeScript
24 lines
516 B
TypeScript
import { cn } from "@/lib/utils";
|
|
|
|
interface ProblemSolutionFooterProps {
|
|
className?: string;
|
|
}
|
|
|
|
export default function ProblemSolutionFooter({
|
|
className,
|
|
...props
|
|
}: ProblemSolutionFooterProps) {
|
|
return (
|
|
<footer
|
|
{...props}
|
|
className={cn("h-9 flex flex-none items-center bg-muted px-3 py-2", className)}
|
|
>
|
|
<div className="w-full flex items-center justify-center">
|
|
<span className="truncate">
|
|
Solution of Two Sum
|
|
</span>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|