mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 15:49:14 +08:00
10 lines
361 B
Text
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 };
|