'use client'; import * as React from 'react'; import { motion, type Variants } from 'motion/react'; import { getVariants, useAnimateIconContext, IconWrapper, type IconProps, } from '@/registry/icons/icon'; type PanelTopProps = IconProps; const animations = { default: { rect: {}, line: { initial: { x1: 3, y1: 9, x2: 21, y2: 9 }, animate: { x1: 3, y1: 7, x2: 21, y2: 7, transition: { type: 'spring', damping: 20, stiffness: 200 }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: PanelTopProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function PanelTop(props: PanelTopProps) { return ; } export { animations, PanelTop, PanelTop as PanelTopIcon, type PanelTopProps, type PanelTopProps as PanelTopIconProps, };