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.
		
		
		
		
		
			
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
| import React from 'react';
 | |
| import styled from 'styled-components';
 | |
| 
 | |
| type PillContainerProps = {
 | |
|   children: React.ReactNode;
 | |
|   margin?: string;
 | |
|   padding?: string;
 | |
|   onClick?: () => void;
 | |
|   onMouseEnter?: () => void;
 | |
|   onMouseLeave?: () => void;
 | |
| };
 | |
| 
 | |
| const StyledPillContainerHoverable = styled.div<PillContainerProps>`
 | |
|   background: none;
 | |
| 
 | |
|   position: relative;
 | |
|   flex-direction: 'row';
 | |
| 
 | |
|   width: 50%;
 | |
|   white-space: nowrap;
 | |
|   text-overflow: ellipsis;
 | |
|   align-items: center;
 | |
|   padding: ${props => props.padding || ''};
 | |
|   margin: ${props => props.margin || ''};
 | |
| `;
 | |
| 
 | |
| const StyledPillInner = styled.div<PillContainerProps>`
 | |
|   background: green;
 | |
|   background: none;
 | |
| 
 | |
|   display: flex;
 | |
|   flex-direction: 'row';
 | |
|   flex-grow: 1;
 | |
|   flex: 1 1 40%;
 | |
| 
 | |
|   overflow: hidden;
 | |
|   white-space: nowrap;
 | |
|   text-overflow: ellipsis;
 | |
| 
 | |
|   align-items: center;
 | |
|   padding: ${props => props.padding || ''};
 | |
|   margin: ${props => props.margin || ''};
 | |
|   border-radius: 300px;
 | |
|   cursor: pointer;
 | |
|   border: 1px solid var(--color-pill-divider);
 | |
|   transition: var(--default-duration);
 | |
|   &:hover {
 | |
|     background: var(--color-clickable-hovered);
 | |
|   }
 | |
| `;
 | |
| 
 | |
| export const PillTooltipWrapper = (props: PillContainerProps) => {
 | |
|   return <StyledPillContainerHoverable {...props}>{props.children}</StyledPillContainerHoverable>;
 | |
| };
 | |
| 
 | |
| export const PillContainerHoverable = (props: PillContainerProps) => {
 | |
|   return <StyledPillInner {...props}>{props.children}</StyledPillInner>;
 | |
| };
 |