| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- "use client";
- import type { Variants } from "motion/react";
- import { motion, useAnimation } from "motion/react";
- import type { HTMLAttributes } from "react";
- import { forwardRef, useCallback, useImperativeHandle, useRef } from "react";
- import { cn } from "@/lib/utils";
- export interface BlocksIconHandle {
- startAnimation: () => void;
- stopAnimation: () => void;
- }
- interface BlocksIconProps extends HTMLAttributes<HTMLDivElement> {
- size?: number;
- }
- const VARIANTS: Variants = {
- normal: { translateX: 0, translateY: 0 },
- animate: { translateX: -4, translateY: 4 },
- };
- const BlocksIcon = forwardRef<BlocksIconHandle, BlocksIconProps>(
- ({ 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) {
- onMouseEnter?.(e);
- } else {
- controls.start("animate");
- }
- },
- [controls, onMouseEnter]
- );
- const handleMouseLeave = useCallback(
- (e: React.MouseEvent<HTMLDivElement>) => {
- if (isControlledRef.current) {
- onMouseLeave?.(e);
- } else {
- controls.start("normal");
- }
- },
- [controls, onMouseLeave]
- );
- return (
- <div
- className={cn(className)}
- onMouseEnter={handleMouseEnter}
- onMouseLeave={handleMouseLeave}
- {...props}
- >
- <svg
- fill="none"
- height={size}
- stroke="currentColor"
- strokeLinecap="round"
- strokeLinejoin="round"
- strokeWidth="2"
- viewBox="0 0 24 24"
- width={size}
- xmlns="http://www.w3.org/2000/svg"
- >
- <path d="M10 21V8a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1H3" />
- <motion.path
- animate={controls}
- d="M14 3h7v7h-7z"
- variants={VARIANTS}
- />
- </svg>
- </div>
- );
- }
- );
- BlocksIcon.displayName = "BlocksIcon";
- export { BlocksIcon };
|