diff options
| -rw-r--r-- | app/components/styled/AppButton.js | 6 | ||||
| -rw-r--r-- | app/components/styled/CellButton.js | 7 |
2 files changed, 4 insertions, 9 deletions
diff --git a/app/components/styled/AppButton.js b/app/components/styled/AppButton.js index 3c28e0b760..2b9e4538da 100644 --- a/app/components/styled/AppButton.js +++ b/app/components/styled/AppButton.js @@ -1,13 +1,11 @@ // @flow import React from 'react'; -import { Text, Component } from 'reactxp'; +import { Component } from 'reactxp'; import { Button } from './Button'; import { Label } from './Label'; -import { Icon } from './Icon'; -import Img from '../Img'; import { colors } from '../../config'; -import { createViewStyles, createTextStyles } from '../../lib/styles'; +import { createViewStyles } from '../../lib/styles'; const styles = { ...createViewStyles({ diff --git a/app/components/styled/CellButton.js b/app/components/styled/CellButton.js index 5a50955747..b11c2171e6 100644 --- a/app/components/styled/CellButton.js +++ b/app/components/styled/CellButton.js @@ -1,14 +1,11 @@ // @flow import React from 'react'; -import { Text, Component } from 'reactxp'; +import { Component } from 'reactxp'; import { Button } from './Button'; import { Label } from './Label'; -import { Icon } from './Icon'; -import { SubText } from './SubText'; -import Img from '../Img'; import { colors } from '../../config'; -import { createViewStyles, createTextStyles } from '../../lib/styles'; +import { createViewStyles } from '../../lib/styles'; const styles = { ...createViewStyles({ |
