import clsx from "clsx"; import type { ComponentPropsWithoutRef } from "react"; import styles from "./CodeInline.module.css"; export type CodeInlineProps = ComponentPropsWithoutRef<"code">; const CodeInline = ({ className, ...rest }: CodeInlineProps) => ( ); export default CodeInline;