import React from "react"; import { CodeBlock } from "../theme/CodeBlock/base"; import { CommandLineIcon } from "./icons/command-line"; import { TerminalIcon } from "./icons/terminal"; type Props = { path: string; }; export const CommonRunLocalPrompt = ({ path }: Props) => { return ( } > {`npm create refine-app@latest -- --example ${path}`} ); };