mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
13 lines
267 B
JavaScript
13 lines
267 B
JavaScript
import React from 'react';
|
|
import { Checkbox } from '@blueprintjs/core';
|
|
|
|
export default function TableIndeterminateCheckboxHeader({
|
|
getToggleAllRowsSelectedProps,
|
|
}) {
|
|
return (
|
|
<div>
|
|
<Checkbox {...getToggleAllRowsSelectedProps()} />
|
|
</div>
|
|
);
|
|
}
|