import type { HTMLAttributes } from "react";
import type { ClassName, TComponentIcon } from "@helpers/types";
export interface ChipsProps extends HTMLAttributes, ClassName {
text: string;
prefixIcon?: TComponentIcon;
suffixIcon?: TComponentIcon;
variant?: TChipsVariant;
}
type TChipsVariant = "default" | "avatar";
export {};