mirror of
https://github.com/langgenius/dify.git
synced 2025-07-18 23:02:25 +00:00
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import { memo } from 'react'
|
|
import Item from './item'
|
|
import Configure from './configure'
|
|
|
|
const Card = () => {
|
|
return (
|
|
<div className='rounded-xl bg-background-section-burn'>
|
|
<div className='flex items-center p-3 pb-2'>
|
|
<div className='mr-3 flex h-10 w-10 shrink-0 items-center justify-center'></div>
|
|
<div className='grow'>
|
|
<div className='system-md-semibold text-text-primary'>
|
|
Notion Data Source
|
|
</div>
|
|
<div className='system-xs-regular flex h-4 items-center text-text-tertiary'>
|
|
langgenius
|
|
<div className='text-text-quaternary'>/</div>
|
|
notion-data-source
|
|
</div>
|
|
</div>
|
|
<Configure />
|
|
</div>
|
|
<div className='system-xs-medium flex h-4 items-center pl-3 text-text-tertiary'>
|
|
Connected workspace
|
|
<div className='ml-3 h-[1px] grow bg-divider-subtle'></div>
|
|
</div>
|
|
<div className='space-y-1 p-3 pt-2'>
|
|
<Item />
|
|
<Item />
|
|
<Item />
|
|
</div>
|
|
<div className='p-3 pt-1'>
|
|
<div className='system-xs-regular flex h-10 items-center justify-center rounded-[10px] bg-background-section text-text-tertiary'>
|
|
Please configure authentication
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default memo(Card)
|