File size: 695 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import React from 'react';

type ShowMoreButtonProps = React.ComponentProps<'button'> & {
  isShowingMore: boolean;
  translations: ShowMoreButtonTranslations;
};

export type ShowMoreButtonTextOptions = {
  /**
   * Whether the widget is showing more items or not.
   */
  isShowingMore: boolean;
};

export type ShowMoreButtonTranslations = {
  /**
   * Alternative text for the "Show more" button.
   */
  showMoreButtonText(options: ShowMoreButtonTextOptions): string;
};

export function ShowMoreButton({
  isShowingMore,
  translations,
  ...props
}: ShowMoreButtonProps) {
  return (
    <button {...props}>
      {translations.showMoreButtonText({ isShowingMore })}
    </button>
  );
}