mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
92c03bdff2
* Refactoring button styles * renaming buttons * Add Link and Button styles * Update new btn styles and storybook * Fix tests * Change font weight; Update storybook * Fix linter
56 lines
1.4 KiB
JavaScript
56 lines
1.4 KiB
JavaScript
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import Button from '../../../../components/ui/button'
|
|
import { INITIALIZE_END_OF_FLOW_ROUTE } from '../../../../helpers/constants/routes'
|
|
|
|
export default class UniqueImageScreen extends PureComponent {
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
metricsEvent: PropTypes.func,
|
|
}
|
|
|
|
static propTypes = {
|
|
history: PropTypes.object,
|
|
}
|
|
|
|
render () {
|
|
const { t } = this.context
|
|
const { history } = this.props
|
|
|
|
return (
|
|
<div>
|
|
<img
|
|
src="/images/sleuth.svg"
|
|
height={42}
|
|
width={42}
|
|
/>
|
|
<div className="first-time-flow__header">
|
|
{ t('protectYourKeys') }
|
|
</div>
|
|
<div className="first-time-flow__text-block">
|
|
{ t('protectYourKeysMessage1') }
|
|
</div>
|
|
<div className="first-time-flow__text-block">
|
|
{ t('protectYourKeysMessage2') }
|
|
</div>
|
|
<Button
|
|
type="primary"
|
|
className="first-time-flow__button"
|
|
onClick={() => {
|
|
this.context.metricsEvent({
|
|
eventOpts: {
|
|
category: 'Onboarding',
|
|
action: 'Agree to Phishing Warning',
|
|
name: 'Agree to Phishing Warning',
|
|
},
|
|
})
|
|
history.push(INITIALIZE_END_OF_FLOW_ROUTE)
|
|
}}
|
|
>
|
|
{ t('next') }
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|
|
}
|