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 55 ArrowUpwardSVGIcon ,
66 CheckBoxSVGIcon ,
77 CheckSVGIcon ,
8- ConfigurableIcons ,
8+ ConfiguredIcons ,
99 Configuration ,
1010 ErrorOutlineSVGIcon ,
1111 FileUploadSVGIcon ,
@@ -22,7 +22,7 @@ import {
2222
2323import navItems from "./navItems" ;
2424
25- const icons : ConfigurableIcons = {
25+ const icons : ConfiguredIcons = {
2626 back : < KeyboardArrowLeftSVGIcon /> ,
2727 checkbox : < CheckBoxSVGIcon /> ,
2828 dropdown : < ArrowDropDownSVGIcon /> ,
Original file line number Diff line number Diff line change 55 ArrowUpwardSVGIcon ,
66 CheckBoxSVGIcon ,
77 CheckSVGIcon ,
8- ConfigurableIcons ,
8+ ConfiguredIcons ,
99 Configuration ,
1010 ErrorOutlineSVGIcon ,
1111 FileUploadSVGIcon ,
@@ -23,7 +23,7 @@ import {
2323import LinkUnstyled from "components/LinkUnstyled" ;
2424import navItems from "./navItems" ;
2525
26- const icons : ConfigurableIcons = {
26+ const icons : ConfiguredIcons = {
2727 back : < KeyboardArrowLeftSVGIcon /> ,
2828 checkbox : < CheckBoxSVGIcon /> ,
2929 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
66` Configuration ` components, you must rename the ` download ` icon to be ` upload ` .
77
88``` diff
9- const icons: ConfigurableIcons = {
9+ const icons: ConfiguredIcons = {
1010 back: <KeyboardArrowLeftSVGIcon />,
1111 checkbox: <CheckBoxSVGIcon />,
1212- download: <FileUploadSVGIcon />,
@@ -231,7 +231,7 @@ update the main `Configuration` component:
231231 ArrowUpwardSVGIcon,
232232 CheckBoxSVGIcon,
233233 CheckSVGIcon,
234- ConfigurableIcons ,
234+ ConfiguredIcons ,
235235 Configuration,
236236 ErrorOutlineSVGIcon,
237237 FileUploadSVGIcon,
@@ -249,7 +249,7 @@ update the main `Configuration` component:
249249
250250 import navItems from "./navItems";
251251
252- const icons: ConfigurableIcons = {
252+ const icons: ConfiguredIcons = {
253253 back: <KeyboardArrowLeftSVGIcon />,
254254 checkbox: <CheckBoxSVGIcon />,
255255 dropdown: <ArrowDropDownSVGIcon />,
You can’t perform that action at this time.
0 commit comments