Rendering icons in tabs
You can pass just React component to icon
property in tabs object. If you need different active icon use function, example below.
<TabbedHeaderPager
tabs={[
{
title: 'Development',
icon: (active) => (active ? <ActiveIcon /> : <Icon />),
},
]}
// ...
>
{/** content */}
</TabbedHeaderPager>