rn-highlighter
Version:
rn-highlighter is a simple and effective way to highlight text in React Native applications.
11 lines • 311 B
TypeScript
import React from 'react';
import { type TextStyle } from 'react-native';
type HighlighterProps = {
text: string;
highlight: string;
highlightStyle?: TextStyle;
textStyle?: TextStyle;
};
export declare const Highlighter: React.FC<HighlighterProps>;
export {};
//# sourceMappingURL=index.d.ts.map