1import { Body, InlineCode } from "@/components/typography"; 2 3export function InlineCodeExample() { 4 return ( 5 <Body> 6 This is a <InlineCode>inline code</InlineCode> example. 7 </Body> 8 ); 9}