UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

10 lines (7 loc) 222 B
'use client'; import { highlightWord } from '@zag-js/highlight-word'; import { useMemo } from 'react'; const useHighlight = (props) => { return useMemo(() => highlightWord(props), [props]); }; export { useHighlight };