diff --git a/packages/toolpad-app/src/toolpad/AppEditor/PageEditor/ComponentCatalog/ComponentCatalog.tsx b/packages/toolpad-app/src/toolpad/AppEditor/PageEditor/ComponentCatalog/ComponentCatalog.tsx index e9bf517b4af..87f6697a252 100644 --- a/packages/toolpad-app/src/toolpad/AppEditor/PageEditor/ComponentCatalog/ComponentCatalog.tsx +++ b/packages/toolpad-app/src/toolpad/AppEditor/PageEditor/ComponentCatalog/ComponentCatalog.tsx @@ -19,7 +19,7 @@ interface FutureComponentSpec { } const FUTURE_COMPONENTS = new Map([ - ['Chart', { url: 'https://github.com/mui/mui-toolpad/issues/789', displayName: 'Chart' }], + ['Password', { url: 'https://github.com/mui/mui-toolpad/issues/2737', displayName: 'Password' }], ['Map', { url: 'https://github.com/mui/mui-toolpad/issues/864', displayName: 'Map' }], ['Drawer', { url: 'https://github.com/mui/mui-toolpad/issues/1540', displayName: 'Drawer' }], ['Html', { url: 'https://github.com/mui/mui-toolpad/issues/1311', displayName: 'Html' }], diff --git a/packages/toolpad-app/src/toolpad/AppEditor/PageEditor/ComponentCatalog/ComponentCatalogItem.tsx b/packages/toolpad-app/src/toolpad/AppEditor/PageEditor/ComponentCatalog/ComponentCatalogItem.tsx index 3adb8f924fd..4256a5cce95 100644 --- a/packages/toolpad-app/src/toolpad/AppEditor/PageEditor/ComponentCatalog/ComponentCatalogItem.tsx +++ b/packages/toolpad-app/src/toolpad/AppEditor/PageEditor/ComponentCatalog/ComponentCatalogItem.tsx @@ -32,8 +32,10 @@ import TableRowsIcon from '@mui/icons-material/TableRows'; import ViewColumnIcon from '@mui/icons-material/ViewColumn'; import TagIcon from '@mui/icons-material/Tag'; import { ButtonBase, SxProps } from '@mui/material'; +import PasswordIcon from '@mui/icons-material/Password'; const iconMap = new Map>([ + ['Password', PasswordIcon], ['Autocomplete', ManageSearchIcon], ['Text', NotesIcon], ['Button', SmartButtonIcon],