@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
8 lines (7 loc) • 358 B
TypeScript
import { Assign } from '../../types';
import { UseHighlightProps } from './use-highlight';
export interface HighlightBaseProps extends UseHighlightProps {
}
export interface HighlightProps extends Assign<React.ComponentProps<'mark'>, HighlightBaseProps> {
}
export declare const Highlight: (props: HighlightProps) => import("react/jsx-runtime").JSX.Element;