@elastic/eui
Version:
Elastic UI Component Library
28 lines (26 loc) • 993 B
JavaScript
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
import createEmotion from '@emotion/css/create-instance';
import { euiStylisPrefixer } from './prefixer';
/**
* This custom instance is needed for internal EUI components to call
* `@emotion/css` with EUI's custom prefixer plugin
* @see https://emotion.sh/docs/@emotion/css#custom-instances
*
* NOTE: Usage is currently being beta tested internally,
* and is not yet intended to be a public export
*/
var _createEmotion = createEmotion({
key: 'css',
stylisPlugins: [euiStylisPrefixer],
speedy: false
}),
css = _createEmotion.css,
cx = _createEmotion.cx,
cache = _createEmotion.cache;
export { css, cx, cache };