'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 SquareDashedKanbanProps = IconProps; const animations = { default: { path1: {}, path2: {}, path3: {}, path4: {}, path5: {}, path6: {}, path7: {}, path8: {}, path9: {}, path10: {}, path11: {}, path12: {}, 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 }: SquareDashedKanbanProps) { const { controls } = useAnimateIconContext(); const variants = getVariants(animations); return ( ); } function SquareDashedKanban(props: SquareDashedKanbanProps) { return ; } export { animations, SquareDashedKanban, SquareDashedKanban as SquareDashedKanbanIcon, type SquareDashedKanbanProps, type SquareDashedKanbanProps as SquareDashedKanbanIconProps, };