UNPKG

react-native-mathjax-html-to-svg

Version:

React Native component to display mathematics in html using MathJax. Uses [MathJax](https://github.com/mathjax/)

16 lines (13 loc) 389 B
declare module 'react-native-mathjax-html-to-svg' { import {TextStyle, ViewStyle} from 'react-native'; import {ReactNode} from 'react'; type Props = { fontSize?: number, color?: string, fontCache?: boolean, style?: ViewStyle, textStyle?: TextStyle, children?: ReactNode, }; export function MathJaxSvg(props: Props) ; }