Fix export style of <LoadGap /> based on <Domain /> (#25128)
				
					
				
			This commit is contained in:
		
							parent
							
								
									245a4eac89
								
							
						
					
					
						commit
						ae0341c203
					
				
					 1 changed files with 17 additions and 17 deletions
				
			
		| 
						 | 
				
			
			@ -16,21 +16,21 @@ interface Props {
 | 
			
		|||
  intl: InjectedIntl;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export const LoadGap = injectIntl<Props>(
 | 
			
		||||
  ({ disabled, maxId, onClick, intl }) => {
 | 
			
		||||
    const handleClick = useCallback(() => {
 | 
			
		||||
      onClick(maxId);
 | 
			
		||||
    }, [maxId, onClick]);
 | 
			
		||||
const _LoadGap: React.FC<Props> = ({ disabled, maxId, onClick, intl }) => {
 | 
			
		||||
  const handleClick = useCallback(() => {
 | 
			
		||||
    onClick(maxId);
 | 
			
		||||
  }, [maxId, onClick]);
 | 
			
		||||
 | 
			
		||||
    return (
 | 
			
		||||
      <button
 | 
			
		||||
        className='load-more load-gap'
 | 
			
		||||
        disabled={disabled}
 | 
			
		||||
        onClick={handleClick}
 | 
			
		||||
        aria-label={intl.formatMessage(messages.load_more)}
 | 
			
		||||
      >
 | 
			
		||||
        <Icon id='ellipsis-h' />
 | 
			
		||||
      </button>
 | 
			
		||||
    );
 | 
			
		||||
  }
 | 
			
		||||
);
 | 
			
		||||
  return (
 | 
			
		||||
    <button
 | 
			
		||||
      className='load-more load-gap'
 | 
			
		||||
      disabled={disabled}
 | 
			
		||||
      onClick={handleClick}
 | 
			
		||||
      aria-label={intl.formatMessage(messages.load_more)}
 | 
			
		||||
    >
 | 
			
		||||
      <Icon id='ellipsis-h' />
 | 
			
		||||
    </button>
 | 
			
		||||
  );
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export const LoadGap = injectIntl(_LoadGap);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue