File size: 370 Bytes
21d7fc3
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export default function ExampleChip({ label, onClick, active }) {
  return (
    <button
      onClick={onClick}
      className={`px-4 py-1.5 rounded-full text-sm transition-colors ${
        active
          ? 'bg-black text-white'
          : 'bg-transparent text-black border border-gray-200 hover:border-gray-400'
      }`}
    >
      {label}
    </button>
  );
}