Files
yaak/src-web/components/core/InlineCode.tsx
2024-05-21 17:56:06 -07:00

16 lines
396 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-xs bg-background-highlight-secondary',
'px-1.5 py-0.5 rounded text-fg shadow-inner',
)}
{...props}
/>
);
}