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