react-code-dataset / react-instantsearch /packages /react-instantsearch-hooks-web /src /ui /Snippet.tsx
| 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} | |
| /> | |
| ); | |
| } | |