dify/web/app/components/datasets/documents/detail/completed/status-item.tsx
Coding On Star 4c908c8f39
refactor: migrate base/select to dify-ui/select (#35487)
Co-authored-by: CodingOnStar <hanxujiang@dify.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-04-22 09:35:57 +00:00

28 lines
587 B
TypeScript

import type { FC } from 'react'
import { RiCheckLine } from '@remixicon/react'
import * as React from 'react'
type StatusOption = {
value: string | number
name: string
}
type IStatusItemProps = {
item: StatusOption
selected: boolean
}
const StatusItem: FC<IStatusItemProps> = ({
item,
selected,
}) => {
return (
<div className="flex items-center justify-between px-2 py-1.5">
<span className="system-md-regular">{item.name}</span>
{selected && <RiCheckLine className="h-4 w-4 text-text-accent" />}
</div>
)
}
export default React.memo(StatusItem)