UNPKG

roko-date-picker

Version:
9 lines (8 loc) 297 B
import { ComponentProps, FC } from "react"; import MaterialCommunityIcons from "react-native-vector-icons/MaterialCommunityIcons"; type Props = { name: ComponentProps<typeof MaterialCommunityIcons>["name"]; onPress: () => void; }; declare const Chevron: FC<Props>; export default Chevron;