igniteui-theming
Version:
A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.
20 lines (19 loc) • 516 B
TypeScript
import { FileImporter } from 'sass-embedded';
/**
* Root directory of the igniteui-theming package.
*/
export declare const THEMING_ROOT: string;
/**
* Sass FileImporter that resolves `@use 'igniteui-theming/sass/...'`
* to the theming package's `sass/` directory.
*
* @example
* ```ts
* import { themingImporter } from './theming-resolve.js';
*
* const result = await sass.compileStringAsync(code, {
* importers: [themingImporter],
* });
* ```
*/
export declare const themingImporter: FileImporter;