@kong/icons 1.2.3-pr.41.0c53216.0 → 1.2.3-pr.42.d18ef82.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 -0
- package/dist/kong-icons.es.js +132 -132
- 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,6 +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
|
+
- you don't need to add the word `icon` in the end of filename
|
129
|
+
- the resulting exported icon name will be title-cased filename with word `Icon` in the end (e.g. `kebab-case.svg -> KebabCaseIcon`)
|
128
130
|
- have a default size of `24px` when they are exported
|
129
131
|
- be sourced from and approved of by Kong's Design team
|
130
132
|
|