Update to FontAwesome5

This commit is contained in:
Qstick
2018-01-21 22:56:41 -05:00
parent b0238c1af4
commit afc4aeb25f
23 changed files with 258 additions and 5138 deletions

View File

@@ -87,7 +87,7 @@ class PageSidebarItem extends Component {
}
PageSidebarItem.propTypes = {
iconName: PropTypes.string,
iconName: PropTypes.object,
title: PropTypes.string.isRequired,
to: PropTypes.string.isRequired,
isActive: PropTypes.bool,

View File

@@ -28,7 +28,7 @@ function PageToolbarButton(props) {
<Icon
name={isSpinning ? (spinningName || iconName) : iconName}
isSpinning={isSpinning}
size={22}
size={21}
/>
<div className={styles.labelContainer}>
@@ -42,8 +42,8 @@ function PageToolbarButton(props) {
PageToolbarButton.propTypes = {
label: PropTypes.string.isRequired,
iconName: PropTypes.string.isRequired,
spinningName: PropTypes.string,
iconName: PropTypes.object.isRequired,
spinningName: PropTypes.object,
isSpinning: PropTypes.bool,
isDisabled: PropTypes.bool
};