8 lines
265 B
TypeScript
8 lines
265 B
TypeScript
import type { FluentIcon } from './createFluentIcon';
|
|
/**
|
|
*
|
|
* Combine the Regular and Filled versions of icons
|
|
* Could be used to toggle between them on hover.
|
|
*/
|
|
export declare const bundleIcon: (FilledIcon: FluentIcon, RegularIcon: FluentIcon) => FluentIcon;
|