UNPKG

@botonic/react

Version:

Build Chatbots using React

14 lines 451 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Fade = void 0; const tslib_1 = require("tslib"); const styled_components_1 = tslib_1.__importStar(require("styled-components")); const fadeIn = (0, styled_components_1.keyframes) ` from { opacity: 0; } to { opacity: 1; } `; exports.Fade = styled_components_1.default.div ` opacity: 0; animation: ${fadeIn} 0.8s forwards; `; //# sourceMappingURL=styles.js.map