UNPKG

keycloakify

Version:

Framework to create custom Keycloak UIs

9 lines (6 loc) 268 B
import { id } from "tsafe"; import { clsx_withTransform, type CxArg as CxArg_generic } from "./clsx_withTransform"; export type CxArg = CxArg_generic<string>; export function clsx(...args: CxArg[]): string { return clsx_withTransform({ args, transform: id }); }