数通智联化工云平台
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.

14 lines
454 B

2 years ago
import { IconifyIcon } from '@iconify/types';
2 years ago
import { IconCSSIconOptions, IconContentIconOptions } from './types.js';
2 years ago
/**
2 years ago
* Get CSS for icon, rendered as background or mask
2 years ago
*/
declare function getIconCSS(icon: IconifyIcon, options?: IconCSSIconOptions): string;
2 years ago
/**
* Get CSS for icon, rendered as content
*/
declare function getIconContentCSS(icon: IconifyIcon, options: IconContentIconOptions): string;
2 years ago
2 years ago
export { getIconCSS, getIconContentCSS };