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 ( + + ); +}