24 lines
636 B
TypeScript
24 lines
636 B
TypeScript
|
|
import type { Preset } from '@primeuix/themes/types';
|
||
|
|
import type { NoraBaseDesignTokens } from './base/index.d';
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* _Nora Preset_
|
||
|
|
*
|
||
|
|
* @group presets
|
||
|
|
* @module nora
|
||
|
|
* @see
|
||
|
|
* --- ---
|
||
|
|
* **Compatible Libraries**
|
||
|
|
*
|
||
|
|
* [](https://primeng.org/theming/styled)
|
||
|
|
* [](https://primevue.org/theming/styled)
|
||
|
|
* --- ---
|
||
|
|
* **Figma UI Kit**
|
||
|
|
*
|
||
|
|
* [PrimeNG](https://primeng.org/uikit) | [PrimeVue](https://primevue.org/uikit)
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
declare const _default: Preset<NoraBaseDesignTokens>;
|
||
|
|
export default _default;
|