File size: 877 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 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<InternalHighlightProps, 'classNames'> & {
classNames?: Partial<SnippetClassNames>;
};
export function Snippet({ classNames = {}, ...props }: SnippetProps) {
return (
<InternalHighlight
classNames={{
root: cx('ais-Snippet', classNames.root),
highlighted: cx('ais-Snippet-highlighted', classNames.highlighted),
nonHighlighted: cx(
'ais-Snippet-nonHighlighted',
classNames.nonHighlighted
),
separator: cx('ais-Snippet-separator', classNames.separator),
}}
{...props}
/>
);
}
|