@xyo-network/react-shared
Version:
Common React library for all XYO projects that use React
16 lines • 671 B
TypeScript
import type { FormControlProps, TextFieldProps } from '@mui/material';
import React from 'react';
export type BigIntTextFieldProps = TextFieldProps & {
defaultFixedPoint?: number;
defaultRawValue?: string;
hideAdornment?: boolean;
onChangeFixedPoint?: (value?: bigint) => void;
onChangeFormatted?: (value?: string) => void;
resetValue?: number;
};
export declare const BigIntTextField: React.FC<BigIntTextFieldProps>;
export interface InputWithFormControlProps extends FormControlProps {
textFieldProps?: BigIntTextFieldProps;
}
export declare const WithFormControl: React.FC<InputWithFormControlProps>;
//# sourceMappingURL=TextField.d.ts.map