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