mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-07-03 19:41:48 +02:00
16 lines
438 B
TypeScript
16 lines
438 B
TypeScript
import classNames from "classnames";
|
|
import type { HTMLAttributes } from "react";
|
|
|
|
export function InlineCode({ className, ...props }: HTMLAttributes<HTMLSpanElement>) {
|
|
return (
|
|
<code
|
|
className={classNames(
|
|
className,
|
|
"font-mono text-shrink bg-surface-highlight border border-border-subtle grow-0",
|
|
"px-1.5 py-0.5 rounded-sm text shadow-inner wrap-break-word",
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|