mirror of
https://github.com/iconify/iconify.git
synced 2025-01-24 15:48:30 +00:00
15 lines
506 B
TypeScript
15 lines
506 B
TypeScript
// Types
|
|
export type { IconifyJSON, IconifyIcon } from '@iconify/types';
|
|
export type {
|
|
IconifyIconSize,
|
|
IconifyHorizontalIconAlignment,
|
|
IconifyVerticalIconAlignment,
|
|
} from '@iconify/utils/lib/customisations';
|
|
|
|
// Types from props.ts
|
|
export type { IconifyIconCustomisations, IconProps } 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';
|