Billing Address Data
billui/billing-address-dataFreeUtility
Billing Address Data component
Install it
npx shadcn@latest add https://billui.com/r/billing-address-data.jsonSource
1import { Country, type ICountry, type IState, State } from "country-state-city";23/** All countries sorted alphabetically */4export const COUNTRIES: ICountry[] = Country.getAllCountries().sort((a, b) =>5 a.name.localeCompare(b.name),6);78/** Get states/provinces for a country by ISO code */9export function getStatesForCountry(countryCode: string): IState[] {10 return State.getStatesOfCountry(countryCode);11}1213export type { ICountry, IState };
Files it writes
More from billui
All 13 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Use Controllable Stateuse-controllable-state | billui | Utilities | Free | no deps | |
| Utilsutils | billui | Utilities | Free | 2 deps |
