UNPKG

@compiled/react

Version:

A familiar and performant compile time CSS-in-JS library for React.

16 lines (12 loc) 270 B
// eslint-disable-next-line import/no-extraneous-dependencies import { keyframes } from '@compiled/react'; export const fadeOut = keyframes({ from: { opacity: 1, }, to: { opacity: 0, }, }); export const namedFadeOut = fadeOut; export default fadeOut;