UNPKG

@pubsweet/ui-toolkit

Version:

Helper functions and reusable blocks for use with @pubsweet/ui

14 lines (10 loc) 217 B
import { keyframes } from 'styled-components' const fadeIn = keyframes` from { opacity: 0 } to { opacity: 1 } ` const fadeOut = keyframes` from { opacity: 1 } to { opacity: 0 } ` export { fadeIn, fadeOut }