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) 252 B
import { ImageProps } from 'react-native'; import ImageGlobalStyles from '../styles/types/ImageGlobalStyles'; interface GSImageProps extends ImageGlobalStyles, ImageProps { } declare const GSImage: (props: GSImageProps) => any; export default GSImage;