Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added EMS (Elastic Map Service) app logo #914

Merged
merged 4 commits into from
Jun 8, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Shifted `readOnly` inputs to not have left padding unless it has an icon ([#894](https://github.com/elastic/eui/pull/894))
- Added more customization options to `EuiAvatar` ([#903](https://github.com/elastic/eui/pull/903))
- Added more color options to `EuiButtonIcon` ([#907](https://github.com/elastic/eui/pull/907))
- Added icon for EMS (Elastic Map Service) (`emsApp`) ([#914](https://github.com/elastic/eui/pull/914))

**Bug fixes**

Expand Down
1 change: 1 addition & 0 deletions src-docs/src/views/icon/apps.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const iconTypes = [
'dashboardApp',
'devToolsApp',
'discoverApp',
'emsApp',
'graphApp',
'grokApp',
'indexPatternApp',
Expand Down
34 changes: 34 additions & 0 deletions src/components/icon/__snapshots__/icon.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -1691,6 +1691,40 @@ exports[`EuiIcon props type empty is rendered 1`] = `
/>
`;

exports[`EuiIcon props type emsApp is rendered 1`] = `
<svg
class="euiIcon euiIcon--medium"
focusable="false"
height="32"
viewBox="0 0 32 32"
width="32"
xmlns="http://www.w3.org/2000/svg"
>
<g
fill="none"
fill-rule="evenodd"
>
<path
d="M19.015 6.57l13 7.43-16 9.143L.016 14l13.001-7.429a3 3 0 0 0 5.999 0z"
fill="#00BEB2"
/>
<path
d="M16.016 12.848L32.03 22l-16.015 9.152L0 22l16.016-9.152zm0 2.304L4.03 22l11.985 6.848L28 22l-11.984-6.848z"
fill="#00BEB2"
fill-rule="nonzero"
/>
<path
d="M16.016 15.5c-4.334-3.333-6.5-6.333-6.5-9 0-4 2.91-6.5 6.5-6.5s6.5 2.5 6.5 6.5c0 2.667-2.167 5.667-6.5 9zm0-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
fill="#00A8E4"
/>
<path
d="M19.015 6.57l3.162 1.808c-.763 2.175-2.817 4.55-6.161 7.122-3.345-2.573-5.399-4.947-6.162-7.122l3.162-1.807a3 3 0 0 0 5.999 0z"
fill="#007899"
/>
</g>
</svg>
`;

exports[`EuiIcon props type exit is rendered 1`] = `
<svg
class="euiIcon euiIcon--medium"
Expand Down
8 changes: 8 additions & 0 deletions src/components/icon/assets/app_ems.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/components/icon/icon.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ import editorUnderline from './assets/editor_underline.svg';
import editorOrderedList from './assets/editor_ordered_list.svg';
import editorUnorderedList from './assets/editor_unordered_list.svg';
import empty from './assets/empty.svg';
import emsApp from './assets/app_ems.svg';
import exit from './assets/exit.svg';
import expand from './assets/expand.svg';
import exportAction from './assets/export.svg';
Expand Down Expand Up @@ -225,6 +226,7 @@ const typeToIconMap = {
editorOrderedList,
editorUnorderedList,
empty,
emsApp,
exit,
expand,
exportAction,
Expand Down