hive-react-kit 0.0.37 → 0.0.38

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/dist/build.css CHANGED
@@ -1722,6 +1722,13 @@
1722
1722
  }
1723
1723
  }
1724
1724
  }
1725
+ .hover\:bg-slate-800 {
1726
+ &:hover {
1727
+ @media (hover: hover) {
1728
+ background-color: var(--color-slate-800);
1729
+ }
1730
+ }
1731
+ }
1725
1732
  .hover\:bg-white\/20 {
1726
1733
  &:hover {
1727
1734
  @media (hover: hover) {
@@ -1,5 +1,6 @@
1
1
  interface CommunitiesListProps {
2
2
  onSelectCommunity: (communityId: string) => void;
3
+ theme?: "light" | "dark";
3
4
  }
4
- declare const CommunitiesList: ({ onSelectCommunity }: CommunitiesListProps) => import("react/jsx-runtime").JSX.Element;
5
+ declare const CommunitiesList: ({ onSelectCommunity, theme, }: CommunitiesListProps) => import("react/jsx-runtime").JSX.Element;
5
6
  export default CommunitiesList;