UNPKG

strapi-plugin-country-select

Version:

A strapi custom field for selecting any country based on the ISO 3166-1 country code standard.

8 lines (7 loc) 345 B
import React from 'react'; import { type InputProps, type FieldValue } from '@strapi/strapi/admin'; type CountrySelectProps = InputProps & FieldValue & { labelAction?: React.ReactNode; }; declare const CountrySelect: React.ForwardRefExoticComponent<CountrySelectProps & React.RefAttributes<HTMLButtonElement>>; export default CountrySelect;