nandorojo / dripsy

🍷 Responsive, unstyled UI primitives for React Native + Web.
https://dripsy.xyz
MIT License
1.99k stars 77 forks source link

How do i import the inputs' props type #211

Closed Wilson-Lim closed 2 years ago

Wilson-Lim commented 2 years ago
Screenshot 2022-05-17 at 6 28 28 PM

I need reference to "DripsyTextInputProps" , is there other path to import ?

Wilson-Lim commented 2 years ago
import {
  styled,
  Text,
  useDripsyTheme,
  View,
  TextInput as DripsyTextInput,
} from 'dripsy'

type DripsyTextInputProps = React.ComponentProps<typeof DripsyTextInput>;

found this.