"use client"; import clsx from "clsx"; import styles from "./inline.module.css"; interface Props { children?: React.ReactNode; className?: string; noWrap?: boolean; title?: string; style?: React.CSSProperties; } const InlineCode = ({ children, className, noWrap, title, style }: Props) => { return ( {children} ); }; export default InlineCode;