'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 SquareKanbanProps = IconProps; const animations = { default: { rect: {}, line1: { initial: { y2: 16, }, animate: { y2: [16, 11, 14, 16], transition: { duration: 0.6, ease: 'linear' }, }, }, line2: { initial: { y2: 11, }, animate: { y2: [11, 14, 16, 11], transition: { duration: 0.6, ease: 'linear' }, }, }, line3: { initial: { y2: 14, }, animate: { y2: [14, 16, 11, 14], transition: { duration: 0.6, ease: 'linear' }, }, }, } satisfies Record, } as const; function IconComponent({ size, ...props }: SquareKanbanProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function SquareKanban(props: SquareKanbanProps) { return ; } export { animations, SquareKanban, SquareKanban as SquareKanbanIcon, type SquareKanbanProps, type SquareKanbanProps as SquareKanbanIconProps, };