v3.0.0
BREAKING CHANGE
If grommet-icons components are being imported via the recommended way:
import { Accessibility } from 'grommet-icons';
there should be no impact.
If grommet-icons components are being imported by reaching deep into the grommet-icons file structure:
import Accessibility from 'grommet/es6/icons/Accessibility';
this will not work anymore.
Callers are encouraged to use the recommended pattern of using named imports.
If you are using a babel import plugin and you use ThemeContext please import it like:
import { ThemeContext } from 'grommet-icons/es6/contexts';