@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
12 lines (11 loc) • 321 B
text/typescript
import { FormatTimeOptions } from '@zag-js/i18n-utils';
export interface FormatTimeProps extends FormatTimeOptions {
/**
* The time to format
*/
value: string | Date;
}
export declare const FormatTime: {
(props: FormatTimeProps): import("react/jsx-runtime").JSX.Element;
displayName: string;
};