diff --git a/src/features/rewards/grantError/__snapshots__/spec.tsx.snap b/src/features/rewards/grantError/__snapshots__/spec.tsx.snap new file mode 100644 index 000000000..331f6487f --- /dev/null +++ b/src/features/rewards/grantError/__snapshots__/spec.tsx.snap @@ -0,0 +1,94 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Grant error tests basic tests matches the snapshot 1`] = ` +.c4 { + --button-main-color: #FB542B; + --button-main-color-hover: #F43405; + --button-main-color-active: #FDBBAA; + --button-state-color: var(--button-main-color); + --icon-size: 18px; + --icon-spacing: 6px; + --webkit-appearance: none; + box-sizing: border-box; + background: none; + border: none; + outline: none; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: row-reverse; + -ms-flex-direction: row-reverse; + flex-direction: row-reverse; + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-align-items: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + font-family: Poppins,sans-serif; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + font-size: 14px; + border-radius: 28px; + width: 100%; + min-width: 235px; + padding: 19px 15px; +} + +.c4:hover:enabled { + --button-state-color: var(--button-main-color-hover); +} + +.c4:active:enabled { + --button-state-color: var(--button-main-color-active); +} + +.c3 { + color: #fff; + background: var(--button-state-color); +} + +.c0 { + text-align: center; + width: 100%; + padding: 20px 10px; + font-family: Poppins,sans-serif; +} + +.c1 { + font-family: Muli,sans-serif; + font-size: 14px; + line-height: 1.29; + color: #838391; + margin: 44px 0 32px; +} + +.c2 { + display: block; + margin: 0 auto; +} + +
+
+
+
+
+`; diff --git a/src/features/rewards/grantError/index.tsx b/src/features/rewards/grantError/index.tsx new file mode 100644 index 000000000..41e320c5d --- /dev/null +++ b/src/features/rewards/grantError/index.tsx @@ -0,0 +1,35 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +import * as React from 'react' +import Button from '../../../components/buttonsIndicators/button' +import { StyledWrapper, StyledText, StyledButton } from './style' + +export interface Props { + text?: string + buttonText: string + onClick: () => void +} + +export default class GrantError extends React.PureComponent { + render () { + const { id, text, buttonText, onClick } = this.props + + return ( + + + {text} + + +
) }) + .add('Grant Error',() => { + return ( +
+ +
+ ) + }) diff --git a/stories/features/rewards/other.tsx b/stories/features/rewards/other.tsx index fbf08c89c..a0055881e 100644 --- a/stories/features/rewards/other.tsx +++ b/stories/features/rewards/other.tsx @@ -211,6 +211,7 @@ storiesOf('Feature Components/Rewards/Other/Desktop', module)