waveterm/frontend/app/shadcn/lib/utils.ts
Sylvie Crowe 075d3b1302
Shadcn Form and Label Components (#1958)
The first step in setting up the connmanager. Adds shadcn components for
form and label in addition to shadcn utils.
2025-02-13 15:07:08 -08:00

26 lines
763 B
TypeScript

// Copyright 2025, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
//
// This file is based on components from shadcn/ui, which is licensed under the MIT License.
// Original source: https://github.com/shadcn/ui
// Modifications made by Command Line Inc.
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
export function formatDate(input: string | number): string {
const date = new Date(input);
return date.toLocaleDateString("en-US", {
month: "long",
day: "numeric",
year: "numeric",
});
}
export function absoluteUrl(path: string) {
return `${process.env.NEXT_PUBLIC_APP_URL}${path}`;
}