bd-geo-info
Version:
A comprehensive Bangladesh geographical data package with hierarchical selection and address form components
19 lines (18 loc) • 715 B
TypeScript
import React from 'react';
import { District, Upazila } from "../types/index";
interface UpazilaSelectProps {
district?: District;
value?: Upazila;
onChange?: (upazila: Upazila) => void;
language?: 'en' | 'bn';
className?: string;
placeholder?: string;
customLabel?: string | React.ReactNode;
customError?: string | React.ReactNode;
theme?: any;
errorClassName?: string;
labelClassName?: string;
containerClassName?: string;
}
export default function UpazilaSelect({ district, value, onChange, language, className, placeholder, customLabel, customError, theme, errorClassName, labelClassName, containerClassName, }: UpazilaSelectProps): React.JSX.Element;
export {};