divider.tsx 292 B

1234567891011121314
  1. import {IconChevron} from 'sentry/icons';
  2. type Props = {
  3. isHover?: boolean;
  4. isLast?: boolean;
  5. };
  6. function Divider({isHover, isLast}: Props) {
  7. return isLast ? null : (
  8. <IconChevron color="gray200" direction={isHover ? 'down' : 'right'} size="xs" />
  9. );
  10. }
  11. export default Divider;