@kolkrabbi/kol-component 0.12.8 → 0.12.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-component",
3
- "version": "0.12.8",
3
+ "version": "0.12.9",
4
4
  "description": "KOL design-system components — atoms through organisms, emitting canonical kol-* classes. Pairs with @kolkrabbi/kol-theme for styling.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -120,7 +120,7 @@ const ContentFilters = ({
120
120
  const isActive = activeFilters.has(filterKey)
121
121
  return (
122
122
  <div key={value} onClick={() => toggleFilter(group.key, value)}>
123
- <Tag size="md" variant="default" hash={false} className={isActive ? 'border-fg-32' : 'border-fg-08'}>
123
+ <Tag size="sm" variant="default" hash={false} className={isActive ? 'border-fg-32' : 'border-fg-08'}>
124
124
  {value}
125
125
  </Tag>
126
126
  </div>