diff --git a/docs/src/app/components/pages/components/SvgIcon/README.md b/docs/src/app/components/pages/components/SvgIcon/README.md index 2b4b9f7de8e228..0ab1c68681e9a8 100644 --- a/docs/src/app/components/pages/components/SvgIcon/README.md +++ b/docs/src/app/components/pages/components/SvgIcon/README.md @@ -14,6 +14,6 @@ directly as a React component. Any properties supplied are passed to `SvgIcon`. The import path for each _Material icons_ component includes the category and icon name, with spaces substituted with dashes. For example to use the [3d rotation](https://design.google.com/icons/#ic_3d_rotation) icon component, import -`material-ui/lib/svg-icons/action/3d-rotation`. +`material-ui/svg-icons/action/3d-rotation`. ### Examples diff --git a/docs/src/app/components/pages/customization/themes.md b/docs/src/app/components/pages/customization/themes.md index 3ba253039386f4..bad5a383d86dd5 100644 --- a/docs/src/app/components/pages/customization/themes.md +++ b/docs/src/app/components/pages/customization/themes.md @@ -24,7 +24,7 @@ Then, you can use `` to provide it down the tree to componen ```js import React from 'react'; import {cyan500} from 'material-ui/styles/colors'; -import MuiThemeProvider from 'material-ui/stylesMuiThemeProvider'; +import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider'; import getMuiTheme from 'material-ui/styles/getMuiTheme'; import AppBar from 'material-ui/AppBar';