/** * Copyright 2025 Beijing Volcano Engine Technology Co., Ltd. All Rights Reserved. * SPDX-license-identifier: BSD-3-Clause */ import React from 'react'; import Bubble from '@/assets/img/bubble.svg'; import styles from './index.module.less'; type IBubbleMsgProps = { text?: string; direction?: 'left' | 'right'; } & React.HTMLAttributes; enum Direction { Left = 'left', Right = 'right', } function BubbleMsg(props: IBubbleMsgProps) { const { text = '', direction = Direction.Right, style = {}, className = '' } = props; return (
Logo
{text}
); } export default BubbleMsg;