mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-25 19:04:35 +08:00

Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: -LAN- <laipz8200@outlook.com>
12 lines
189 B
TypeScript
12 lines
189 B
TypeScript
import React from 'react'
|
|
|
|
const Dot = () => {
|
|
return (
|
|
<div className='text-text-quaternary system-xs-medium'>·</div>
|
|
)
|
|
}
|
|
|
|
Dot.displayName = 'Dot'
|
|
|
|
export default React.memo(Dot)
|