mirror of
https://github.com/iconify/iconify.git
synced 2024-12-13 14:13:06 +00:00
15 lines
472 B
TypeScript
15 lines
472 B
TypeScript
// Types
|
|
export type { IconifyJSON, IconifyIcon } from '@iconify/types';
|
|
export type { IconifyIconSize } from '@iconify/utils/lib/customisations/defaults';
|
|
|
|
// Types from props.ts
|
|
export type {
|
|
IconifyIconCustomisations,
|
|
IconProps,
|
|
IconifyRenderMode,
|
|
} from './props';
|
|
|
|
// Functions
|
|
// Important: duplicate of global exports in OfflineIcon.svelte. When changing exports, they must be changed in both files.
|
|
export { addIcon, addCollection } from './offline-functions';
|