app-ui / navigation / tabs
Tabs In Pills On Gray
04-tabs-in-pills-on-gray.jsx
import { ChevronDownIcon } from '@heroicons/react/16/solid'
const tabs = [
{ name: 'My Account', href: '#', current: false },
{ name: 'Company', href: '#', current: false },
{ name: 'Team Members', href: '#', current: true },
{ name: 'Billing', href: '#', current: false },
]
function classNames(...classes) {
return classes.filter(Boolean).join(' ')
}
export default function Example() {
return (
<div>
<div className="grid grid-cols-1 sm:hidden">
{/* Use an "onChange" listener to redirect the user to the selected tab URL. */}
<select
defaultValue={tabs.find((tab) => tab.current).name}
aria-label="Select a tab"
className="col-start-1 row-start-1 w-full appearance-none rounded-md bg-white py-2 pr-8 pl-3 text-base text-gray-900 outline-1 -outline-offset-1 outline-gray-300 focus:outline-2 focus:-outline-offset-2 focus:outline-indigo-600 dark:bg-white/5 dark:text-gray-100 dark:outline-white/10 dark:*:bg-gray-800 dark:focus:outline-indigo-500"
>
{tabs.map((tab) => (
<option key={tab.name}>{tab.name}</option>
))}
</select>
<ChevronDownIcon
aria-hidden="true"
className="pointer-events-none col-start-1 row-start-1 mr-2 size-5 self-center justify-self-end fill-gray-500 dark:fill-gray-400"
/>
</div>
<div className="hidden sm:block">
<nav aria-label="Tabs" className="flex space-x-4">
{tabs.map((tab) => (
<a
key={tab.name}
href={tab.href}
aria-current={tab.current ? 'page' : undefined}
className={classNames(
tab.current
? 'bg-gray-200 text-gray-800 dark:bg-white/10 dark:text-white'
: 'text-gray-600 hover:text-gray-800 dark:text-gray-400 dark:hover:text-white',
'rounded-md px-3 py-2 text-sm font-medium',
)}
>
{tab.name}
</a>
))}
</nav>
</div>
</div>
)
}