import {IconChevron} from 'sentry/icons'; type Props = { isHover?: boolean; isLast?: boolean; }; function Divider({isHover, isLast}: Props) { return isLast ? null : ( ); } export default Divider;