Added a first round of docs for front end (#1246)

This commit is contained in:
Lucas Bordeau
2023-08-18 00:16:48 +02:00
committed by GitHub
parent e8e6d9f8ea
commit 390e70a196
11 changed files with 383 additions and 4 deletions

View File

@ -23,6 +23,12 @@ import {
TbBugOff,
TbBrandVscode,
TbFolder,
TbEyeglass,
TbZoomQuestion,
TbPaint,
TbChecklist,
TbKeyboard,
TbPencil,
} from "react-icons/tb";
@ -53,6 +59,13 @@ export default function DocSidebarItemLink({
'TbBrandVscode': TbBrandVscode,
'TbDeviceDesktop': TbDeviceDesktop,
'TbFolder': TbFolder,
'TbEyeglass': TbEyeglass,
'TbZoomQuestion': TbZoomQuestion,
'TbPaint': TbPaint,
'TbChecklist': TbChecklist,
'TbKeyboard': TbKeyboard,
'TbChecklist': TbChecklist,
'TbPencil': TbPencil,
};
let IconComponent = customProps && customProps.icon ? icons[customProps.icon] : TbFaceIdError;