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

15 lines (14 loc) 856 B
import React from 'react'; import { IThirdPartyAnimation } from './types/thirdPartyAnimation'; declare const ThirdPartyAnimationComponent: <V extends string | unknown>({ autoplay, loop, variant, ...props }: IThirdPartyAnimation<V>, ref: React.ForwardedRef<HTMLSpanElement | null>) => JSX.Element; /** * @deprecated This component has been deprecated and will be removed in the next MAJOR release. * * ThirdPartyAnimation component is a component that can be used to create third-party animations. * @param {React.PropsWithChildren<IThirdPartyAnimation<V>>} props * @returns {JSX.Element} */ declare const ThirdPartyAnimation: <V>(props: React.PropsWithChildren<IThirdPartyAnimation<V>> & { ref?: React.ForwardedRef<HTMLSpanElement | null> | undefined | null; }) => ReturnType<typeof ThirdPartyAnimationComponent>; export { ThirdPartyAnimation };