{"version":3,"file":"chat-separator.cjs","sources":["../../../components/chat/chat-separator.tsx"],"sourcesContent":["'use client';\n\nimport { cx } from 'class-variance-authority';\nimport { ComponentProps } from 'react';\nimport styles from './chat.module.css';\n\nexport interface ChatSeparatorProps extends ComponentProps<'div'> {}\n\nexport function ChatSeparator({ className, ...props }: ChatSeparatorProps) {\n  return (\n    <div\n      className={cx(styles.separator, className)}\n      data-slot='chat-separator'\n      {...props}\n    />\n  );\n}\n\nChatSeparator.displayName = 'Chat.Separator';\n"],"names":[],"mappings":";;;;;;;AAQM;AACJ;AAOF;AAEA;;"}