corner-left-down

PreviousNext
Docs
lucide-animatedui

Preview

Loading preview…
corner-left-down.tsx
'use client';

import type { Variants } from 'motion/react';
import type { HTMLAttributes } from 'react';
import { forwardRef, useCallback, useImperativeHandle, useRef } from 'react';
import { motion, useAnimation } from 'motion/react';

import { cn } from '@/lib/utils';

const STRETCH_VARIANTS: Variants = {
  normal: { scaleY: 1, y: 0, opacity: 1 },
  animate: {
    scaleY: [1, 1.15, 1],
    y: [0, 2, 0],
    transition: {
      duration: 0.45,
      ease: 'easeInOut',
    },
  },
};

export interface CornerLeftDownIconHandle {
  startAnimation: () => void;
  stopAnimation: () => void;
}

interface CornerLeftDownIconProps extends HTMLAttributes<HTMLDivElement> {
  size?: number;
}

const CornerLeftDownIcon = forwardRef<
  CornerLeftDownIconHandle,
  CornerLeftDownIconProps
>(({ onMouseEnter, onMouseLeave, className, size = 28, ...props }, ref) => {
  const controls = useAnimation();
  const isControlledRef = useRef(false);

  useImperativeHandle(ref, () => {
    isControlledRef.current = true;
    return {
      startAnimation: () => controls.start('animate'),
      stopAnimation: () => controls.start('normal'),
    };
  });

  const handleMouseEnter = useCallback(
    (e: React.MouseEvent<HTMLDivElement>) => {
      if (!isControlledRef.current) {
        controls.start('animate');
      } else {
        onMouseEnter?.(e);
      }
    },
    [controls, onMouseEnter]
  );

  const handleMouseLeave = useCallback(
    (e: React.MouseEvent<HTMLDivElement>) => {
      if (!isControlledRef.current) {
        controls.start('normal');
      } else {
        onMouseLeave?.(e);
      }
    },
    [controls, onMouseLeave]
  );

  return (
    <div
      className={cn(className)}
      onMouseEnter={handleMouseEnter}
      onMouseLeave={handleMouseLeave}
      {...props}
    >
      <motion.svg
        xmlns="http://www.w3.org/2000/svg"
        width={size}
        height={size}
        viewBox="0 0 24 24"
        fill="none"
        stroke="currentColor"
        strokeWidth="2"
        strokeLinecap="round"
        strokeLinejoin="round"
        animate={controls}
        variants={STRETCH_VARIANTS}
        initial="normal"
      >
        <path d="m14 15-5 5-5-5" />
        <path d="M20 4h-7a4 4 0 0 0-4 4v12" />
      </motion.svg>
    </div>
  );
});

CornerLeftDownIcon.displayName = 'CornerLeftDownIcon';

export { CornerLeftDownIcon };

Installation

npx shadcn@latest add @lucide-animated/corner-left-down

Usage

import { CornerLeftDown } from "@/components/ui/corner-left-down"
<CornerLeftDown />