import styled from 'styled-components'; import { HTMLAttributes, ComponentClass } from 'react'; import { N30 } from '@atlaskit/theme/colors'; export const TriggerWrapper: ComponentClass> = styled.div` display: flex; `; export const Separator: ComponentClass> = styled.span` background: ${N30}; width: 1px; height: 24px; display: inline-block; margin: 0 8px; `; export const Wrapper: ComponentClass> = styled.span` display: flex; align-items: center; div { display: flex; } `; export const ExpandIconWrapper: ComponentClass> = styled.span` margin-left: -8px; `;