import * as React from 'react'; import { FontAwesomeIcon as Icon } from '@fortawesome/react-fontawesome'; import { faCheckSquare, faSquare } from '@fortawesome/free-regular-svg-icons'; export interface IMultiSelectAllProps { id?: string; onClick: (event: any) => void; onKeyPress: (event: any) => void; selectAll: boolean; } export const MultiSelectAll = (props: IMultiSelectAllProps) => { const { id, onClick, onKeyPress, selectAll } = props; return (