import { keyframes, IconProps, chakra, usePrefersReducedMotion, } from "@teste-ui/react" const spin = keyframes` from { transform: rotate(0deg); } to { transform: rotate(360deg); } ` export const Logo = (props: IconProps) => { const prefersReducedMotion = usePrefersReducedMotion() const animation = prefersReducedMotion ? undefined : `${spin} infinite 20s linear` return ( ) }