Eva Icons
In case you need to have more icons available, Pal.js UI provides a @paljs/icons
pack with 480+ SVG icons.
Install the pack:
yarn add @paljs/icons
Or
npm i @paljs/icons
In your Layout page add icons to Layout component
import icons from '@paljs/icons';
//...
<Layout windowMode evaIcons={icons}> <Header changeTheme={changeTheme} toggleSidebar={() => sidebarRef.current?.toggle()} />
<LayoutContainer>
<SidebarCustom ref={sidebarRef} />
<LayoutContent>
<LayoutColumns>
<LayoutColumn className="main-content">{props.children}</LayoutColumn>
</LayoutColumns>
<LayoutFooter>Footer</LayoutFooter>
</LayoutContent>
</LayoutContainer>
</Layout>;
//...