diff --git a/client/components/mobile/IconButton.jsx b/client/components/mobile/IconButton.jsx
index ce758376..1057d952 100644
--- a/client/components/mobile/IconButton.jsx
+++ b/client/components/mobile/IconButton.jsx
@@ -1,17 +1,24 @@
import React from 'react';
+import PropTypes from 'prop-types';
import styled from 'styled-components';
-import { prop, remSize } from '../../theme';
+import Button from '../../common/Button';
-const textColor = prop('primaryTextColor');
-
-const IconButton = styled.button`
+const ButtonWrapper = styled(Button)`
width: 3rem;
> svg {
width: 100%;
height: auto;
- fill: ${textColor};
- stroke: ${textColor};
}
`;
+const IconButton = ({ children }) => (