Files
2023-02-03 13:23:40 +00:00

9 lines
273 B
TypeScript

import type { ReactNode } from "react";
const inlineCode =
"px-1 py-0.5 text-sm bg-slate-700 border border-slate-900 rounded text-slate-200";
export function InlineCode({ children }: { children: ReactNode }) {
return <code className={inlineCode}>{children}</code>;
}