

SPF019912: Use a valid font icon as Web Part icon |
Web Part uses as icon one of the valid font icons
CheckId | SPF019912 |
---|---|
TypeName | SpecifyValidWebPartIconFontName |
Severity | Warning |
Type | Web Part Manifest |
Web Part can use one of the valid font icons as its icon specified using the officeFabricIconFontName property. Supported values can be found at .
MyWebPart.manifest.json example
"$schema": "../../../node_modules/@microsoft/sp-module-interfaces/lib/manifestSchemas/jsonSchemas/clientSideComponentManifestSchema.json",
"id": "8908df13-a965-4445-9c48-ecec77c44be4",
"alias": "WeatherWebPart",
"componentType": "WebPart",
"version": "0.0.1",
"manifestVersion": 2,
"preconfiguredEntries": [{
"groupId": "8908df13-a965-4445-9c48-ecec77c44be4",
"group": { "default": "Default" },
"title": { "default": "Weather" },
"description": { "default": "Shows weather for the given place" },
"officeFabricIconFontName": "Sunny",
"properties": {
"location": ""
}
}]
}