mirror of
https://github.com/langgenius/dify.git
synced 2026-08-28 18:24:32 +08:00
14 lines
416 B
TypeScript
14 lines
416 B
TypeScript
import type { ReactNode } from 'react'
|
|
import type { WithIconCardListProps } from './markdown-with-directive-schema'
|
|
import { cn } from '@langgenius/dify-ui/cn'
|
|
|
|
type WithIconListProps = WithIconCardListProps & {
|
|
children?: ReactNode
|
|
}
|
|
|
|
function WithIconCardList({ children, className }: WithIconListProps) {
|
|
return <div className={cn('space-y-1', className)}>{children}</div>
|
|
}
|
|
|
|
export default WithIconCardList
|