From 8c64536a774249f08a6ec49e780fef82a73a090a Mon Sep 17 00:00:00 2001 From: Alex Hayes Date: Mon, 9 Oct 2017 00:20:11 +1100 Subject: [PATCH] [stepper] Use correct font-family in `StepPositionIcon`. (#4799) --- src/Stepper/StepPositionIcon.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Stepper/StepPositionIcon.js b/src/Stepper/StepPositionIcon.js index 8ee5c06397f142..e03fa6fa2a8109 100644 --- a/src/Stepper/StepPositionIcon.js +++ b/src/Stepper/StepPositionIcon.js @@ -5,6 +5,7 @@ import classNames from 'classnames'; import withStyles from '../styles/withStyles'; import SvgIcon from '../SvgIcon'; import type { Icon } from './StepButton'; +import Typography from '../Typography'; export const styles = (theme: Object) => ({ root: { @@ -14,6 +15,7 @@ export const styles = (theme: Object) => ({ text: { fill: theme.palette.getContrastText(theme.palette.primary[500]), fontSize: theme.typography.caption.fontSize, + fontFamily: theme.typography.fontFamily, }, active: { fill: theme.palette.primary[500],