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

[Icon] Update securityAnalyticsApp and logoSecurity #2613

Merged
merged 5 commits into from
Dec 9, 2019
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
@@ -1,6 +1,7 @@
## [`master`](https://github.com/elastic/eui/tree/master)

- Added TypeScript definitions for `EuiBasicTable`, `EuiInMemoryTable`, and related components ([#2428](https://github.com/elastic/eui/pull/2428))
- Updated `logoSecurity` and `appSecurityAnalytics` icons ([#2613](https://github.com/elastic/eui/pull/2613))

**Bug fixes**

Expand Down
14 changes: 7 additions & 7 deletions src/components/icon/__snapshots__/icon.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -5590,16 +5590,16 @@ exports[`EuiIcon props type logoSecurity is rendered 1`] = `
Logo Security
</title>
<path
d="M29 27.793a2.986 2.986 0 01-2.215 2.896C24.584 31.268 20.842 32 16 32c-4.842 0-8.584-.732-10.785-1.311A2.986 2.986 0 013 27.793V13h26v14.793z"
fill="#0080D5"
d="M0 22c0 5.522 4.478 10 10 10V12C4.478 12 0 16.477 0 22"
fill="#00BFB3"
/>
<path
d="M24 10H8V8a8 8 0 0116 0v2z"
fill="#FEC514"
d="M10 0v9c7.168 0 13 5.831 13 13h9C32 9.85 22.15 0 10 0"
fill="#F04E98"
/>
<path
class="euiIcon__fillNegative"
d="M24 18.793c0 .785-.453 1.499-1.169 1.82C21.521 21.201 19.16 22 16 22c-3.16 0-5.521-.799-6.831-1.387A1.988 1.988 0 018 18.793V13h16v5.793z"
d="M10 12v10h10c0-5.523-4.478-10-10-10"
/>
</svg>
`;
Expand Down Expand Up @@ -6856,11 +6856,11 @@ exports[`EuiIcon props type securityAnalyticsApp is rendered 1`] = `
Security Analytics App
</title>
<path
d="M2 14h28v16c-3.333 1.333-8 2-14 2s-10.667-.667-14-2V14zm2 2v12.589C6.972 29.52 10.98 30 16 30s9.028-.48 12-1.411V16H4zm20-4V8.09C24 3.626 20.421 0 16 0c-4.421 0-8 3.625-8 8.09V12h2V8.09C10 4.725 12.69 2 16 2s6 2.724 6 6.09V12h2z"
d="M10 12c5.43 0 9.848 4.327 9.996 9.72L20 22v1h-9v9h-1C4.477 32 0 27.523 0 22s4.477-10 10-10zm-1 9v-6.938a8.001 8.001 0 00-.25 15.84l.25.036V14.062 21zm2-6.938V21h6.938a8.005 8.005 0 00-6.68-6.902l-.257-.036z"
/>
<path
class="euiIcon__fillSecondary"
d="M8 18v6h2v-6zM22 18v6h2v-6zM15 18v8h2v-8z"
d="M10 6c8.731 0 15.83 6.994 15.997 15.685L26 22h-2c0-7.628-6.1-13.83-13.687-13.997L10 8V6zm0-6c12.029 0 21.803 9.654 21.997 21.636L32 22h-2c0-10.93-8.769-19.813-19.656-19.997L10 2V0z"
/>
</svg>
`;
Expand Down
4 changes: 2 additions & 2 deletions src/components/icon/assets/app_security_analytics.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ const EuiIconAppSecurityAnalytics = ({ title, ...props }) => (
xmlns="http://www.w3.org/2000/svg"
{...props}>
<title>{title}</title>
<path d="M2 14h28v16c-3.333 1.333-8 2-14 2s-10.667-.667-14-2V14zm2 2v12.589C6.972 29.52 10.98 30 16 30s9.028-.48 12-1.411V16H4zm20-4V8.09C24 3.626 20.421 0 16 0c-4.421 0-8 3.625-8 8.09V12h2V8.09C10 4.725 12.69 2 16 2s6 2.724 6 6.09V12h2z" />
<path d="M10 12c5.43 0 9.848 4.327 9.996 9.72L20 22v1h-9v9h-1C4.477 32 0 27.523 0 22s4.477-10 10-10zm-1 9v-6.938a8.001 8.001 0 00-.25 15.84l.25.036V14.062 21zm2-6.938V21h6.938a8.005 8.005 0 00-6.68-6.902l-.257-.036z" />
<path
className="euiIcon__fillSecondary"
d="M8 18v6h2v-6zM22 18v6h2v-6zM15 18v8h2v-8z"
d="M10 6c8.731 0 15.83 6.994 15.997 15.685L26 22h-2c0-7.628-6.1-13.83-13.687-13.997L10 8V6zm0-6c12.029 0 21.803 9.654 21.997 21.636L32 22h-2c0-10.93-8.769-19.813-19.656-19.997L10 2V0z"
/>
</svg>
);
Expand Down
8 changes: 2 additions & 6 deletions src/components/icon/assets/app_security_analytics.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 7 additions & 4 deletions src/components/icon/assets/logo_security.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@ const EuiIconLogoSecurity = ({ title, ...props }) => (
{...props}>
<title>{title}</title>
<path
fill="#0080D5"
d="M29 27.793a2.986 2.986 0 01-2.215 2.896C24.584 31.268 20.842 32 16 32c-4.842 0-8.584-.732-10.785-1.311A2.986 2.986 0 013 27.793V13h26v14.793z"
fill="#00BFB3"
d="M0 22c0 5.522 4.478 10 10 10V12C4.478 12 0 16.477 0 22"
/>
<path
fill="#F04E98"
d="M10 0v9c7.168 0 13 5.831 13 13h9C32 9.85 22.15 0 10 0"
/>
<path fill="#FEC514" d="M24 10H8V8a8 8 0 0116 0v2z" />
<path
className="euiIcon__fillNegative"
d="M24 18.793c0 .785-.453 1.499-1.169 1.82C21.521 21.201 19.16 22 16 22c-3.16 0-5.521-.799-6.831-1.387A1.988 1.988 0 018 18.793V13h16v5.793z"
d="M10 12v10h10c0-5.523-4.478-10-10-10"
/>
</svg>
);
Expand Down
6 changes: 3 additions & 3 deletions src/components/icon/assets/logo_security.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.