Create a tab-like experience using 'pills', based on this CodePen.
m(TabPills, {
tabs: [
{
title: [
m("img.unselectable", {
src: physAgres,
alt: "Physcial violence",
width: 48,
height: 48,
}),
"Physcial violence",
],
content: "Content 1",
},
{
title: [
m("img", {
src: bodyLang,
alt: "Non-physical violence",
width: 48,
height: 48,
}),
"Non-physical violence",
],
content: "Content 2",
},
],
}),