Created
August 5, 2021 10:03
-
-
Save yeaFern/605496cf894689210d320f0ce8b0a0af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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