unpkg/public/@emotion/core@10.0.6/src/keyframes.js

24 lines
464 B
JavaScript

// @flow
import css from '@emotion/css'
type Keyframes = {|
name: string,
styles: string,
anim: 1,
toString: () => string
|} & string
export const keyframes = (...args: *): Keyframes => {
let insertable = css(...args)
const name = `animation-${insertable.name}`
// $FlowFixMe
return {
name,
styles: `@keyframes ${name}{${insertable.styles}}`,
anim: 1,
toString() {
return `_EMO_${this.name}_${this.styles}_EMO_`
}
}
}