[APM] Replaced the icon for the ellipsis (#36429) (#36435)

This commit is contained in:
Casper Hübertz 2019-05-10 15:33:41 +02:00 committed by GitHub
parent e8baa9920c
commit 15dc75cc51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"
/>
);
}