mirror of
https://github.com/langgenius/dify.git
synced 2026-05-03 17:08:03 +08:00
14 lines
238 B
TypeScript
14 lines
238 B
TypeScript
import type { FC } from 'react'
|
|
import * as React from 'react'
|
|
|
|
const FoldItem: FC = () => {
|
|
return (
|
|
<div
|
|
className="h-6 rounded bg-gray-100"
|
|
data-component="fold-item"
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default React.memo(FoldItem)
|