Components
Inline code snippet styled with a monospace font and muted background for use within body text.
Loading preview...
import { TypographyInlineCode } from "@/components/ui/uiable-typography-inline-code";
export default function Default() {
return (
<div className="flex min-h-[200px] w-full items-center justify-center bg-background p-8">
<p className="max-w-md text-center text-base text-foreground">
Install the package by running <TypographyInlineCode /> in your
terminal.
</p>
</div>
);
}