@apolitical/component-library 4.6.0-4652.8 → 4.6.0

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.
@@ -1,3 +1,2 @@
1
1
  export * from './helpers';
2
2
  export * from './wrapper';
3
- export { en as messages } from '../../locales/';
@@ -1 +0,0 @@
1
- export { default as Members } from './members';
@@ -1,3 +0,0 @@
1
- import type { Props } from './members.interface';
2
- declare function Members({ buildMemberData, communitySlug }: Props): import("react/jsx-runtime").JSX.Element;
3
- export default Members;
@@ -1,14 +0,0 @@
1
- import { BuildMemberDataType } from '../../../cards.types';
2
- export interface Props {
3
- buildMemberData: BuildMemberDataType;
4
- communitySlug: string;
5
- }
6
- export interface IMemberData {
7
- role?: string;
8
- membersCount: number;
9
- }
10
- export type MemberType = {
11
- count: string;
12
- isMember: boolean;
13
- memberType: string;
14
- };