Urara-Blog/node_modules/.pnpm-store/v3/files/9a/173593c2ce0a40769868db8c7008de818ae7f4e2d7588ec58e0cba988376ceb38685509db8d7b2dea3b306368088554d2ed8a3558e1cfdc2221e13a499bf04
2022-08-14 01:14:53 +08:00

10 lines
361 B
Text

import { IconifyJSON, IconifyIcon } from '@iconify/types';
import { FullIconifyIcon } from '../icon/index.js';
/**
* Get data for icon
*/
declare function getIconData(data: IconifyJSON, name: string, full: true): FullIconifyIcon | null;
declare function getIconData(data: IconifyJSON, name: string, full: false): IconifyIcon | null;
export { getIconData };