at main 309 B view raw
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}