My personal website
1import { ReactNode } from 'react';
2
3export type CodeVariant = 'inline' | 'block';
4
5export interface CodeProps {
6 children: ReactNode;
7 variant?: CodeVariant; // 'inline' for <code>, 'block' for <pre><code>
8 language?: string; // Optional language identifier for syntax highlighting
9 className?: string;
10}