import ConfigurableIcon from '../display/ConfigurableIcon';
function ToggleValues( props ) {
let {
theRow,
toggleValue
} = props;
let {
accountd,
active,
stockd,
servicd
} = theRow;
return (
<>
status
{ toggleValue( 4, theRow ); } }
toolTipTitle="toggle the active state"
/>
{ toggleValue( 1, theRow ); } }
toolTipTitle="toggle accountd access"
/>
{ toggleValue( 2, theRow ); } }
toolTipTitle="toggle servicd access"
/>
{ toggleValue( 3, theRow ); } }
toolTipTitle="toggle stockd access"
/>
>
);
}
export default ToggleValues;