rms-react
Version:
Библиотека React компонентов разработанная по дизайн системе РМ Солюшн
8 lines • 437 B
TypeScript
import React, { DetailedHTMLProps, HTMLProps } from 'react';
import { TableCellProps } from '../TableCell';
export interface TableInputCellProps extends Omit<DetailedHTMLProps<HTMLProps<HTMLInputElement>, HTMLInputElement>, 'size' | 'ref'>, Pick<TableCellProps, 'variant' | 'size' | 'padding'> {
inputClassName?: string;
units?: string;
cellRef?: React.Ref<HTMLLIElement>;
}
//# sourceMappingURL=TableInputCell.props.d.ts.map