UNPKG

@sleeperhq/mini-core

Version:

Core library frameworks for developing Sleeper Mini Apps.

14 lines (13 loc) 357 B
import React, { PureComponent } from 'react'; import { TextProps } from 'react-native'; type Props = { color?: string; inheritStyles?: boolean; screenShrink?: number; } & TextProps; export type AppTextProps = Props; export default class AppText extends PureComponent<Props> { private getStyles; render(): React.JSX.Element; } export {};