@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
19 lines (18 loc) • 406 B
text/typescript
export interface FormatByteProps {
/**
* The unit granularity to display
*/
unit?: 'bit' | 'byte';
/**
* The unit display
*/
unitDisplay?: 'long' | 'short' | 'narrow';
/**
* The byte size to format
*/
value: number;
}
export declare const FormatByte: {
(props: FormatByteProps): import("react/jsx-runtime").JSX.Element;
displayName: string;
};