You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
import { IconifyIcon } from '@iconify/types';
|
|
|
|
|
import { IconCSSIconOptions, IconContentIconOptions } from './types.js';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get CSS for icon, rendered as background or mask
|
|
|
|
|
*/
|
|
|
|
|
declare function getIconCSS(icon: IconifyIcon, options?: IconCSSIconOptions): string;
|
|
|
|
|
/**
|
|
|
|
|
* Get CSS for icon, rendered as content
|
|
|
|
|
*/
|
|
|
|
|
declare function getIconContentCSS(icon: IconifyIcon, options: IconContentIconOptions): string;
|
|
|
|
|
|
|
|
|
|
export { getIconCSS, getIconContentCSS };
|