UNPKG

@botonic/react

Version:

Build Chatbots using React

12 lines (9 loc) 214 B
import styled, { keyframes } from 'styled-components' const fadeIn = keyframes` from { opacity: 0; } to { opacity: 1; } ` export const Fade = styled.div` opacity: 0; animation: ${fadeIn} 0.8s forwards; `