Skip to content

Instantly share code, notes, and snippets.

@yeaFern
Created August 5, 2021 10:03
Show Gist options
  • Save yeaFern/605496cf894689210d320f0ce8b0a0af to your computer and use it in GitHub Desktop.
Save yeaFern/605496cf894689210d320f0ce8b0a0af to your computer and use it in GitHub Desktop.
import React from 'react';
export type InlineCodeProps = {
children: React.ReactNode;
};
export default function InlineCode(props: InlineCodeProps) {
return (
<span className="font-mono bg-gray-300/75 rounded-md px-1">
{props.children}
</span>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment