UNPKG

@shopify/cli-kit

Version:

A set of utilities, interfaces, and models that are common across all the platform features

13 lines (12 loc) 428 B
import ScalarDict from './ScalarDict.js'; import { Column } from './Column.js'; import React from 'react'; interface RowProps<T extends ScalarDict> { fillerChar: string; rowKey: string; data: Partial<T>; columns: Column<T>[]; ignoreColumnColor?: boolean; } declare const Row: <T extends ScalarDict>({ rowKey, columns, data, fillerChar, ignoreColumnColor }: RowProps<T>) => React.JSX.Element; export { Row };