@lucide/svelte
Version:
A Lucide icon library package for Svelte applications.
17 lines (16 loc) • 506 B
TypeScript
/**
* @file
* @license @lucide/svelte v1.17.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
export interface LucideGlobalContext {
color?: string;
size?: number;
strokeWidth?: number;
absoluteStrokeWidth?: boolean;
class?: string;
}
export declare const setLucideProps: (globalProps: LucideGlobalContext) => LucideGlobalContext;
export declare const getLucideContext: () => LucideGlobalContext;