UNPKG

@iconify/utils

Version:

Common functions for working with Iconify icon sets used by various packages.

14 lines (12 loc) 349 B
interface LicenseInfo { attribution: boolean; commercial: boolean; sameLicense?: boolean; } /** * Data for open source licenses used by icon sets in `@iconify/json` package and smaller packages * * Key is SPDX license identifier */ declare const licensesData: Record<string, LicenseInfo>; export { type LicenseInfo, licensesData };