Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 276 Bytes

File metadata and controls

16 lines (12 loc) · 276 Bytes

react-native-app-helpers/TextProps

Props to be given to text components.

Usage

import type { TextProps } from "react-native-app-helpers";

const example: TextProps = {
  onPress(): void {
    console.log('Press.');
  },
  children: "Example Children",
};