[WEB-4661] fix: move helpers file into utils #7568

This commit is contained in:
sriram veeraghanta 2025-08-11 18:42:51 +05:30 committed by GitHub
parent a085c0ec62
commit 047080a66f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
59 changed files with 68 additions and 72 deletions

View file

@ -2,7 +2,7 @@ import React from "react";
// ui
import { Tooltip } from "../tooltip";
// helpers
import { cn } from "../../helpers";
import { cn } from "../utils";
// types
import { TAvatarSize, getSizeInfo, isAValidNumber } from "./avatar";

View file

@ -2,7 +2,7 @@ import React from "react";
// ui
import { Tooltip } from "../tooltip";
// helpers
import { cn } from "../../helpers";
import { cn } from "../utils";
export type TAvatarSize = "sm" | "md" | "base" | "lg" | number;