UNPKG

react-native-global-styler

Version:

Lightweight and developer-friendly React Native styling toolkit with prebuilt styled components and a powerful useGlobalStyler hook for shorthand props like m_10, radius_12, resize_cover, and more.

7 lines (6 loc) 315 B
import { TouchableOpacityProps } from 'react-native'; import BaseGlobalStyles from '../styles/types/BaseGlobalStyles'; interface GSTouchableOpacityProps extends BaseGlobalStyles, TouchableOpacityProps { } declare const GSTouchableOpacity: (props: GSTouchableOpacityProps) => any; export default GSTouchableOpacity;