mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2026-07-06 14:01:30 +08:00
Co-authored-by: SuYao <sy20010504@gmail.com> Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com> Co-authored-by: fullex <106392080+0xfullex@users.noreply.github.com> Signed-off-by: kangfenmao <kangfenmao@qq.com> Signed-off-by: suyao <sy20010504@gmail.com>
14 lines
360 B
TypeScript
14 lines
360 B
TypeScript
import { Flex } from '@cherrystudio/ui'
|
|
import type { FC, ReactNode } from 'react'
|
|
import { memo } from 'react'
|
|
|
|
interface Props {
|
|
children: string | ReactNode
|
|
}
|
|
|
|
const StatusBar: FC<Props> = ({ children }) => {
|
|
return <Flex className="flex-col gap-2 overflow-y-auto text-wrap rounded-b-lg bg-muted p-3">{children}</Flex>
|
|
}
|
|
|
|
export default memo(StatusBar)
|