astro-ghostcms/.pnpm-store/v3/files/3c/8c0e760d8059d280a9ff0c816e1...

14 lines
454 B
Plaintext

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 };