import styled from '@emotion/styled'; import {IconArrow} from 'sentry/icons'; export function SortableHeader({title, direction, onClick}) { const arrow = !direction ? null : ( ); return ( {title} {arrow} ); } const HeaderWrapper = styled('div')` cursor: pointer; `; const StyledIconArrow = styled(IconArrow)` vertical-align: top; `;