@kong/icons 1.2.3-pr.42.d18ef82.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/kong-icons.es.js +206 -206
- package/dist/kong-icons.es.js.map +1 -1
- package/dist/kong-icons.umd.js +1 -1
- package/dist/kong-icons.umd.js.map +1 -1
- package/dist/types/components/flags/index.d.ts +1 -1
- package/dist/types/components/index.d.ts +1 -1
- package/dist/types/components/multi-color/index.d.ts +1 -1
- package/dist/types/components/solid/index.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -125,8 +125,8 @@ Source SVG files **must**:
|
|
125
125
|
- All flag icon SVG files **must** be named following the format `{country code}.svg` and **must** be placed in the `/svg/flags/` directory. All country codes must be two-character strings.
|
126
126
|
- All multi-color SVG files **must** be placed in the `/svg/multi-color/` directory
|
127
127
|
- have a **unique**, `kebab-case` filename, regardless of the `/svg/*` subdirectory they are located in
|
128
|
-
-
|
129
|
-
- the resulting exported icon name will be
|
128
|
+
- file names **must** not include the word `icon` (it is automatically added during component generation)
|
129
|
+
- the resulting exported icon name will be a PascalCase file with an added `Icon` suffix (e.g. `kebab-case.svg -> KebabCaseIcon`)
|
130
130
|
- have a default size of `24px` when they are exported
|
131
131
|
- be sourced from and approved of by Kong's Design team
|
132
132
|
|