File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
create-react-app-typescript/src/components/Layout
nextjs-typescript/src/components/Layout
packages/documentation/src/migration-guides Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 5
5
ArrowUpwardSVGIcon ,
6
6
CheckBoxSVGIcon ,
7
7
CheckSVGIcon ,
8
- ConfigurableIcons ,
8
+ ConfiguredIcons ,
9
9
Configuration ,
10
10
ErrorOutlineSVGIcon ,
11
11
FileUploadSVGIcon ,
@@ -22,7 +22,7 @@ import {
22
22
23
23
import navItems from "./navItems" ;
24
24
25
- const icons : ConfigurableIcons = {
25
+ const icons : ConfiguredIcons = {
26
26
back : < KeyboardArrowLeftSVGIcon /> ,
27
27
checkbox : < CheckBoxSVGIcon /> ,
28
28
dropdown : < ArrowDropDownSVGIcon /> ,
Original file line number Diff line number Diff line change 5
5
ArrowUpwardSVGIcon ,
6
6
CheckBoxSVGIcon ,
7
7
CheckSVGIcon ,
8
- ConfigurableIcons ,
8
+ ConfiguredIcons ,
9
9
Configuration ,
10
10
ErrorOutlineSVGIcon ,
11
11
FileUploadSVGIcon ,
@@ -23,7 +23,7 @@ import {
23
23
import LinkUnstyled from "components/LinkUnstyled" ;
24
24
import navItems from "./navItems" ;
25
25
26
- const icons : ConfigurableIcons = {
26
+ const icons : ConfiguredIcons = {
27
27
back : < KeyboardArrowLeftSVGIcon /> ,
28
28
checkbox : < CheckBoxSVGIcon /> ,
29
29
dropdown : < ArrowDropDownSVGIcon /> ,
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ If you provide custom icons for `react-md` using the `IconProvider` or
6
6
` Configuration ` components, you must rename the ` download ` icon to be ` upload ` .
7
7
8
8
``` diff
9
- const icons: ConfigurableIcons = {
9
+ const icons: ConfiguredIcons = {
10
10
back: <KeyboardArrowLeftSVGIcon />,
11
11
checkbox: <CheckBoxSVGIcon />,
12
12
- download: <FileUploadSVGIcon />,
@@ -231,7 +231,7 @@ update the main `Configuration` component:
231
231
ArrowUpwardSVGIcon,
232
232
CheckBoxSVGIcon,
233
233
CheckSVGIcon,
234
- ConfigurableIcons ,
234
+ ConfiguredIcons ,
235
235
Configuration,
236
236
ErrorOutlineSVGIcon,
237
237
FileUploadSVGIcon,
@@ -249,7 +249,7 @@ update the main `Configuration` component:
249
249
250
250
import navItems from "./navItems";
251
251
252
- const icons: ConfigurableIcons = {
252
+ const icons: ConfiguredIcons = {
253
253
back: <KeyboardArrowLeftSVGIcon />,
254
254
checkbox: <CheckBoxSVGIcon />,
255
255
dropdown: <ArrowDropDownSVGIcon />,
You can’t perform that action at this time.
0 commit comments