Files
CherryHQ-cherry-studio/src/renderer/components/CodeBlockView/StatusBar.tsx
亢奋猫 9749358af9 feat(renderer-components): split shared list, tree, icons, markdown & code components (#16026)
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>
2026-06-18 18:01:52 +08:00

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)