import React from 'react'; import { InternalHighlight } from './InternalHighlight'; import { cx } from './lib/cx'; import type { InternalHighlightProps, InternalHighlightClassNames, } from './InternalHighlight'; export type SnippetClassNames = InternalHighlightClassNames; export type SnippetProps = Omit & { classNames?: Partial; }; export function Snippet({ classNames = {}, ...props }: SnippetProps) { return ( ); }