import { FC } from 'react'; import { UniformSlot } from '@uniformdev/next-app-router/component'; import { cn } from '@/utils/styling'; import { withFlattenParameters } from '@/utils/withFlattenParameters'; import { AlignmentMap, TableCustomCellParameters, TableCustomCellProps } from '.'; const TableCustomCell: FC = ({ slots, alignment }) => (
); export default withFlattenParameters(TableCustomCell);