@xyo-network/react-shared
Version:
Common React library for all XYO projects that use React
9 lines • 399 B
TypeScript
import type { InputAdornmentProps } from '@mui/material';
import React from 'react';
export interface FixedPointInputAdornmentProps extends InputAdornmentProps {
fixedPoint?: number;
minFixedPoint?: number;
onFixedPointChange?: (value: number) => void;
}
export declare const FixedPointInputAdornment: React.FC<FixedPointInputAdornmentProps>;
//# sourceMappingURL=InputAdornment.d.ts.map