You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			83 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			83 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
| import styled from 'styled-components';
 | |
| import { Flex } from '../../../basic/Flex';
 | |
| import { SessionIcon, SessionIconSize, SessionIconType } from '../../../icon';
 | |
| 
 | |
| const StyledActionRow = styled.button`
 | |
|   border: none;
 | |
|   padding: 0;
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   transition-duration: var(--default-duration);
 | |
|   width: 100%;
 | |
| 
 | |
|   &:hover {
 | |
|     background: var(--conversation-tab-background-hover-color);
 | |
|   }
 | |
| `;
 | |
| 
 | |
| export const StyledChooseActionTitle = styled.span`
 | |
|   color: var(--text-primary-color);
 | |
|   font-size: 18px;
 | |
|   padding: var(--margins-md) 0;
 | |
|   text-align: start;
 | |
|   width: 100%;
 | |
| `;
 | |
| 
 | |
| const StyledIcon = styled.div`
 | |
|   width: 58px;
 | |
|   margin: var(--margins-md) var(--margins-sm);
 | |
| `;
 | |
| 
 | |
| const StyledHR = styled.hr`
 | |
|   height: 0px;
 | |
|   width: 100%;
 | |
|   border: 0.5px solid var(--border-color);
 | |
|   padding: 0;
 | |
|   margin: 0;
 | |
| `;
 | |
| 
 | |
| export const StyledActionRowContainer = styled(Flex)`
 | |
|   width: 100%;
 | |
|   border-top: 1px solid var(--border-color);
 | |
|   border-bottom: 1px solid var(--border-color);
 | |
| 
 | |
|   ${StyledActionRow}:last-child ${StyledHR} {
 | |
|     border-color: transparent;
 | |
|   }
 | |
| `;
 | |
| 
 | |
| type ActionRowProps = {
 | |
|   title: string;
 | |
|   ariaLabel: string;
 | |
|   iconType: SessionIconType;
 | |
|   iconSize?: number | SessionIconSize;
 | |
|   onClick: () => void;
 | |
|   dataTestId: string;
 | |
| };
 | |
| 
 | |
| export function ActionRow(props: ActionRowProps) {
 | |
|   const { title, ariaLabel, iconType, iconSize, onClick, dataTestId } = props;
 | |
| 
 | |
|   return (
 | |
|     <StyledActionRow onClick={onClick} data-testid={dataTestId} aria-label={ariaLabel}>
 | |
|       <StyledIcon>
 | |
|         <SessionIcon
 | |
|           iconType={iconType}
 | |
|           iconSize={iconSize || 'large'}
 | |
|           iconColor="var(--text-primary-color)"
 | |
|         />
 | |
|       </StyledIcon>
 | |
|       <Flex
 | |
|         container={true}
 | |
|         flexDirection={'column'}
 | |
|         justifyContent={'flex-start'}
 | |
|         alignItems={'flex-start'}
 | |
|         width={'100%'}
 | |
|       >
 | |
|         <StyledChooseActionTitle>{title}</StyledChooseActionTitle>
 | |
|         <StyledHR />
 | |
|       </Flex>
 | |
|     </StyledActionRow>
 | |
|   );
 | |
| }
 |