Files
Camilou.fr/VUEJS/myapp/node_modules/@iconify/utils/lib/css/icon.d.ts
T
Camilla Schoeser 6a71f91e2f ajout du site
2026-05-29 21:38:59 +02:00

11 lines
451 B
TypeScript

import { IconCSSIconOptions, IconContentIconOptions } from "./types.js";
import { IconifyIcon } from "@iconify/types";
/**
* 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 };