Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
woocommerce
/
packages
/
woocommerce-blocks
/
assets
/
js
/
base
/
components
/
state-input
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
export interface StateInputProps { className?: string; label: string; id: string; autoComplete?: string; value: string; country: string; onChange: ( value: string ) => void; required?: boolean; errorMessage?: string; } export type StateInputWithStatesProps = StateInputProps & { states: Record< string, Record< string, string > >; };