diff --git a/src/ui/components/Button.js b/src/ui/components/Button.js index 37dbed941..8e55bd921 100644 --- a/src/ui/components/Button.js +++ b/src/ui/components/Button.js @@ -203,6 +203,7 @@ type Props = { * Whether the button should render depressed into its socket */ depressed?: boolean, + iconVariant?: 'filled' | 'outline', }; type State = { @@ -300,6 +301,7 @@ class Button extends React.Component< selected, iconSize, windowIsFocused, + iconVariant, ...props } = this.props; const {active} = this.state; @@ -324,10 +326,9 @@ class Button extends React.Component< iconComponent = ( );