diff --git a/CHANGELOG.md b/CHANGELOG.md index 9526526e34a..0d11e281449 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Converted tool tip components to TypeScript ([#2013](https://github.com/elastic/eui/pull/2013)) - Converted `EuiCopy` to TypeScript ([#2016](https://github.com/elastic/eui/pull/2016)) - Convert badge and token components to TypeScript ([#2026](https://github.com/elastic/eui/pull/2026)) +- Changed `logoAWS` SVG in `EuiIcon` to work better in dark mode ([#2036](https://github.com/elastic/eui/pull/2036)) **Bug fixes** diff --git a/src-docs/src/views/call_out/danger.js b/src-docs/src/views/call_out/danger.js index 87e690c0149..49608a2568b 100644 --- a/src-docs/src/views/call_out/danger.js +++ b/src-docs/src/views/call_out/danger.js @@ -3,7 +3,7 @@ import React from 'react'; import { EuiCallOut, EuiLink } from '../../../../src/components'; export default () => ( - +

Now you have to fix it, but maybe{' '} this link can help. diff --git a/src/components/icon/__snapshots__/icon.test.tsx.snap b/src/components/icon/__snapshots__/icon.test.tsx.snap index 1df66f709d5..7fc8fdec4a2 100644 --- a/src/components/icon/__snapshots__/icon.test.tsx.snap +++ b/src/components/icon/__snapshots__/icon.test.tsx.snap @@ -2798,9 +2798,8 @@ exports[`EuiIcon props type logoAWS is rendered 1`] = ` fill-rule="evenodd" > ( {...props}> diff --git a/src/components/icon/assets/logo_aws.svg b/src/components/icon/assets/logo_aws.svg index dc051bb9394..f6ac6f71962 100644 --- a/src/components/icon/assets/logo_aws.svg +++ b/src/components/icon/assets/logo_aws.svg @@ -1,6 +1,6 @@ - + diff --git a/src/components/icon/assets/swatch_input.js b/src/components/icon/assets/swatch_input.js index cf900137656..d65b3789a71 100644 --- a/src/components/icon/assets/swatch_input.js +++ b/src/components/icon/assets/swatch_input.js @@ -1,5 +1,22 @@ -import React from "react"; +import React from 'react'; -const EuiIconSwatchInput = props => ; +const EuiIconSwatchInput = props => ( + + + + +); -export const icon = EuiIconSwatchInput; \ No newline at end of file +export const icon = EuiIconSwatchInput;