Sha256: 3b743a3d3f8cd998f0e0eb48191ed8f2fa07f5d4e2335c28c5adeb64ab332a0d
Contents?: true
Size: 527 Bytes
Versions: 28
Compression:
Stored size: 527 Bytes
Contents
import React from 'react'; import { Button, Icon } from 'patternfly-react'; import { ACTIONS_HISTORY_BUTTON_TEXT } from '../../../../ForemanInventoryConstants'; import { getActionsHistoryUrl } from '../../../../ForemanInventoryHelpers'; const HistoryButton = () => ( <Button className="tasks_history_button" href={getActionsHistoryUrl()} target="_blank" rel="noopener noreferrer" bsSize="lg" > <Icon name="history" /> {ACTIONS_HISTORY_BUTTON_TEXT} </Button> ); export default HistoryButton;
Version data entries
28 entries across 28 versions & 1 rubygems