import * as React from "react";
import { cn } from "@/lib/utils";
export function InlineCode({
className,
...props
}: React.HTMLAttributes<HTMLSpanElement>) {
return (
<code
className={cn(
"relative rounded bg-muted px-[0.3rem] py-[0.2rem] font-mono text-sm font-semibold",
className,
)}
{...props}
/>
);
}
npx shadcn@latest add @spectrumui/inline-codeimport { InlineCode } from "@/components/inline-code"<InlineCode />