From a0b1327db7a3b90639fa86c5a0609f6ae239ad51 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Wed, 26 Feb 2025 21:54:44 +0800 Subject: [PATCH] feat(run-code): add RunCode component for executing code --- src/components/run-code.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/components/run-code.tsx diff --git a/src/components/run-code.tsx b/src/components/run-code.tsx new file mode 100644 index 0000000..6e4af52 --- /dev/null +++ b/src/components/run-code.tsx @@ -0,0 +1,23 @@ +import { cn } from "@/lib/utils"; +import { PlayIcon } from "lucide-react"; +import { Button } from "@/components/ui/button"; + +interface RunCodeProps { + className?: string; +} + +export default function RunCode({ + className, + ...props +}: RunCodeProps) { + return ( + + ); +}