blob: 0b5e061a36d6640d76de44fd2c08525407d90395 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
type Props = {
code: string;
};
export default function InlineCode({ code }: Props) {
return (
<code className="bg-gray-50 rounded-lg border border-gray-300 p-1">
{code}
</code>
);
}
|