'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 PanelBottomProps = IconProps; const animations = { default: { rect: {}, line: { initial: { x1: 3, y1: 15, x2: 21, y2: 15 }, animate: { x1: 3, y1: 17, x2: 21, y2: 17, transition: { type: 'spring', damping: 20, stiffness: 200 }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: PanelBottomProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function PanelBottom(props: PanelBottomProps) { return ; } export { animations, PanelBottom, PanelBottom as PanelBottomIcon, type PanelBottomProps, type PanelBottomProps as PanelBottomIconProps, };