UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

14 lines (13 loc) 537 B
import { CSSProp } from 'styled-components'; import { ICssAnimationStyled } from '../types/cssAnimation'; /** * @name transitionMixin * @description * Mixin for the transition * @param {ICssAnimationStyled} props - The props of the animation * @returns {CSSProp} - The animation * */ export declare const transitionMixin: (props: ICssAnimationStyled) => CSSProp; export declare const transitionMixinEnter: (props: ICssAnimationStyled) => CSSProp; export declare const transitionMixinExit: (props: ICssAnimationStyled) => CSSProp;