import React from 'react' import cn from '@/utils/classnames' type ItemProps = { isActive: boolean label: string onClick: () => void } const Item = ({ isActive, label, onClick, }: ItemProps) => { return (