active escape hatch on tablist buttons

This commit is contained in:
Francis Thibault 2019-11-27 14:12:07 -05:00
parent 6f909d22e0
commit 082332aec7

View File

@ -164,6 +164,7 @@ export const Tabs: FunctionComponent<TabsProps> = memo(
actions.onSelect(id);
}}
role="tab"
className={`tabbutton ${active ? 'tabbutton-active' : ''}`}
>
{typeof title === 'function' ? title() : title}
</TabButton>