headplane/app/components/Code.tsx

10 lines
225 B
TypeScript
Raw Normal View History

import { type ReactNode } from 'react'
export default function Code({ children }: { readonly children: ReactNode }) {
return (
<code className='bg-gray-100 dark:bg-zinc-700 p-0.5 rounded-md'>
{children}
</code>
)
}