UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

10 lines (9 loc) 326 B
import { PropsWithChildren } from 'react'; export interface LocaleProviderProps extends PropsWithChildren { /** * The locale to use for the application. * @default 'en-US' */ locale: string; } export declare const LocaleProvider: (props: LocaleProviderProps) => import("react/jsx-runtime").JSX.Element;