All files / src/components/Inputs/utils handleLabelPositionClassname.ts

0% Statements 0/8
0% Branches 0/4
0% Functions 0/1
0% Lines 0/7

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15                             
import { LabelPosition } from "../../../types/inputs/index.ts";
 
export const handleLabelPositionClassname = (position: LabelPosition) => {
  switch (position) {
    case LabelPosition.TOP:
      return "flex flex-col";
    case LabelPosition.BOTTOM:
      return "flex flex-col-reverse";
    case LabelPosition.LEFT:
      return "flex flex-row items-center gap-2";
    case LabelPosition.RIGHT:
      return "flex flex-row-reverse items-center gap-2";
  }
};