10 lines
412 B
TypeScript
10 lines
412 B
TypeScript
import type { FluentIcon, CreateFluentIconOptions } from './createFluentIcon';
|
|
export type { FluentIcon, CreateFluentIconOptions } from './createFluentIcon';
|
|
/**
|
|
* Base createFluentIcon for sprite-based icons.
|
|
*
|
|
* @access private
|
|
* @alpha
|
|
*/
|
|
export declare const createFluentIcon: (iconId: string, size: string, spritePath?: string | undefined, options?: CreateFluentIconOptions | undefined) => FluentIcon;
|