export type ButtonVariant =
  | "default"
  | "ghost"
  | "outline"
  | "secondary"
  | "link";
export type Alignnment = "start" | "end";

export interface DropdownOption {
  label: string;
  value: string;
}
