@sandlada/mdc
Version:
@sandlada/mdc is an open source component library that follows the Material Design 3 design specifications.
14 lines • 344 B
TypeScript
/**
* @license
* Copyright 2025 Kai-Orion & Sandlada
* SPDX-License-Identifier: MIT
*/
/**
* Before:
* createVar(['--color', '--palette-red-5'], '#000')
*
* After:
* var(--color, var(--palette-red-5, #000))
*/
export declare function createVar(vars: string[], value: string): string;
//# sourceMappingURL=create-var.d.ts.map