stack/apps/dashboard/src/components/inline-code.tsx
Konsti Wohlwend 1618f89c46
Onboarding app & restricted users (#1069)
- restricted users
- onboarding app
- waitlist app
- fixed an exception when setting primary email
- automatically update the JWT token on the client when the user object
changes
2026-01-11 17:22:14 -08:00

13 lines
357 B
TypeScript

import { cn } from "@/components/ui";
export function InlineCode(props: { children: React.ReactNode, className?: string }) {
return (
<span className={cn(
"bg-gray-100 dark:bg-gray-800 px-1 py-0.5 border border-gray-200 dark:border-gray-700 rounded-md font-mono text-sm",
props.className
)}>
{props.children}
</span>
);
}