mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
13 lines
353 B
JavaScript
13 lines
353 B
JavaScript
import React from 'react';
|
|
import { Checkbox } from '@blueprintjs/core';
|
|
import { CellType } from 'common';
|
|
export default function TableIndeterminateCheckboxRow({ row }) {
|
|
return (
|
|
<div class="selection-checkbox">
|
|
<Checkbox {...row.getToggleRowSelectedProps()} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
TableIndeterminateCheckboxRow.cellType = CellType.Field;
|