"use client" import { motion } from "motion/react" import { useIconAnimation } from "../hooks/useIconAnimation" import type { IconProps } from "../lib/types" export const Database = ({ size = 24, strokeWidth = 2, className, animated, motionType = 'scale', trigger = 'hover', 'aria-label': ariaLabel }: IconProps) => { const { animationProps, pathAnimationProps, drawWrapperProps } = useIconAnimation(animated, motionType, trigger) const isDraw = motionType === 'draw' return ( ) }