Skip to content

Commit

Permalink
[APM] Replaced the icon for the ellipsis (#36429)
Browse files Browse the repository at this point in the history
  • Loading branch information
formgeist authored May 10, 2019
1 parent e266874 commit 588964e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions x-pack/plugins/apm/public/components/shared/Icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,15 @@

import { EuiIcon } from '@elastic/eui';
import React from 'react';
import { units } from '../../style/variables';

export function Ellipsis({ horizontal }: { horizontal: boolean }) {
return (
<EuiIcon
style={{
transition: 'transform 0.1s',
transform: `rotate(${horizontal ? 90 : 0}deg)`,
marginRight: units.half
transform: `rotate(${horizontal ? 90 : 0}deg)`
}}
type="boxesVertical"
type="arrowRight"
/>
);
}

0 comments on commit 588964e

Please sign in to comment.