From 9215cb0fe86ce36550aabfd26c600dcd97c725da Mon Sep 17 00:00:00 2001 From: Szymon Lesisz Date: Wed, 31 Oct 2018 12:51:35 +0100 Subject: [PATCH] eslint + flowtype fixes --- .../Notification/components/NotificationButton/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Notification/components/NotificationButton/index.js b/src/components/Notification/components/NotificationButton/index.js index eca4d26c..4954f72a 100644 --- a/src/components/Notification/components/NotificationButton/index.js +++ b/src/components/Notification/components/NotificationButton/index.js @@ -1,7 +1,7 @@ /* @flow */ import * as React from 'react'; -import styled, { css } from 'styled-components'; +import styled from 'styled-components'; import PropTypes from 'prop-types'; import Icon from 'components/Icon'; import colors from 'config/colors'; @@ -17,6 +17,7 @@ type Props = { size: number; }; onClick: () => void; + isLoading?: boolean; children: React.Node; };