import React, { DetailedHTMLProps, PropsWithChildren } from "react"; import { twMerge } from "tailwind-merge"; type Props = PropsWithChildren & DetailedHTMLProps, HTMLDivElement>; /** * # Single Line CodeBlock */ export default function SingleLineCodeBlock({ children, ...props }: Props) { return (
{children}
); }