UNPKG

@jupyterlab/git

Version:

A JupyterLab extension for version control using git

11 lines (10 loc) 398 B
import * as React from 'react'; /** * Action button component * * @param props Component properties */ export const SelectAllButton = (props) => { const { className, onChange, checked } = props; return (React.createElement("input", { type: "checkbox", className: className, onChange: onChange, style: { marginRight: '10px' }, checked: checked, "data-test-id": "SelectAllButton" })); };