UNPKG

react-native-ethiopian-calendar

Version:

A react native calendar component which is mainly intended for applications which require Ethiopian calendar.

11 lines (10 loc) 353 B
import React from 'react'; import type { LanguageCode } from 'src/utils/locals/types'; import type { Theme } from '../../../types'; declare type LocalsDropdownProps = { theme?: Theme; locals: LanguageCode; onLanguageChange?: (language: LanguageCode) => void; }; export declare const LocalsDropDown: React.FC<LocalsDropdownProps>; export {};