@useloops/design-system 1.4.431 → 1.4.433

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/index.d.ts CHANGED
@@ -2395,13 +2395,13 @@ interface SearchInputProps {
2395
2395
  }
2396
2396
  declare const SearchInput: FunctionComponent<SearchInputProps>;
2397
2397
 
2398
- interface FilterCountProps extends PropsWithChildren {
2398
+ interface FilterCountProps {
2399
2399
  buttonText?: string;
2400
- end: string;
2400
+ end?: string;
2401
2401
  filteredCount?: number;
2402
- hasButton?: boolean;
2402
+ loading?: boolean;
2403
2403
  onButtonPress?: () => void;
2404
- start: string;
2404
+ start?: string;
2405
2405
  totalCount: number;
2406
2406
  }
2407
2407
  declare const FilterCount: FunctionComponent<FilterCountProps>;