@innovaccer/design-system
Version:
React components library project for Innovaccer Design System
18 lines (17 loc) • 428 B
TypeScript
import * as React from 'react';
import { RowData, Schema } from "./Grid";
import { GridBodyProps } from "./GridBody";
export interface GridRowProps {
schema: Schema;
data: RowData;
rowIndex: number;
onSelect: GridBodyProps['onSelect'];
className?: string;
}
export declare const GridRow: {
(props: GridRowProps): React.JSX.Element;
defaultProps: {
data: {};
};
};
export default GridRow;