diff --git a/client/source/scripts/components/icons/Icon.js b/client/source/scripts/components/icons/Icon.js index 623c7825..6b202efb 100644 --- a/client/source/scripts/components/icons/Icon.js +++ b/client/source/scripts/components/icons/Icon.js @@ -3,6 +3,7 @@ import React from 'react'; const _icons = { active: , add: , + addMini: , all: , completed: , download: @@ -27,6 +28,7 @@ const _icons = { , pause: , + removeMini: , search: @@ -50,9 +52,14 @@ export default class Icon extends React.Component { render() { let className = 'icon icon--' + this.props.icon; let icon = _icons[this.props.icon]; + let viewBox = '0 0 60 60'; + + if (this.props.size && this.props.size === 'mini') { + viewBox = '0 0 8 8'; + } return ( - + {icon} );