import { cn } from 'ui' import { LEVELS } from '../DataTable.constants' import { getLevelColor } from '../DataTable.utils' export const DataTableColumnLevelIndicator = ({ value, className, dotClassName, }: { value: (typeof LEVELS)[number] className?: string dotClassName?: string }) => { return (
) }