@workday/canvas-system-icons-web 2.0.6 → 2.0.7

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.
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-signout wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24">
2
+ <g class="wd-icon-container">
3
+ <path d="M11.5 2a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5h-1z" class="wd-icon-fill"/>
4
+ <path d="M3 12a9.004 9.004 0 0 1 6-8.488v2.162a7 7 0 1 0 6 0V3.512A9.004 9.004 0 0 1 21 12a9 9 0 1 1-18 0z" class="wd-icon-fill"/>
5
+ </g>
6
+ </svg>
package/dist/ts/index.ts CHANGED
@@ -451,6 +451,7 @@ import signalFourIcon from './signalFour'
451
451
  import signalOneIcon from './signalOne'
452
452
  import signalThreeIcon from './signalThree'
453
453
  import signalTwoIcon from './signalTwo'
454
+ import signoutIcon from './signout'
454
455
  import skillsIcon from './skills'
455
456
  import skipIcon from './skip'
456
457
  import sliderIcon from './slider'
@@ -1005,6 +1006,7 @@ export {
1005
1006
  signalOneIcon,
1006
1007
  signalThreeIcon,
1007
1008
  signalTwoIcon,
1009
+ signoutIcon,
1008
1010
  skillsIcon,
1009
1011
  skipIcon,
1010
1012
  sliderIcon,
@@ -1560,6 +1562,7 @@ export default {
1560
1562
  signalOne: signalOneIcon.svg,
1561
1563
  signalThree: signalThreeIcon.svg,
1562
1564
  signalTwo: signalTwoIcon.svg,
1565
+ signout: signoutIcon.svg,
1563
1566
  skills: skillsIcon.svg,
1564
1567
  skip: skipIcon.svg,
1565
1568
  slider: sliderIcon.svg,
@@ -2114,6 +2117,7 @@ export enum CanvasSystemIcons {
2114
2117
  SignalOne = 'signalOne',
2115
2118
  SignalThree = 'signalThree',
2116
2119
  SignalTwo = 'signalTwo',
2120
+ Signout = 'signout',
2117
2121
  Skills = 'skills',
2118
2122
  Skip = 'skip',
2119
2123
  Slider = 'slider',
@@ -0,0 +1,10 @@
1
+ import { CanvasSystemIcon, CanvasIconTypes } from '@workday/design-assets-types'
2
+ const icon: CanvasSystemIcon = {
3
+ name: 'signout',
4
+ type: CanvasIconTypes.System,
5
+ svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="wd-icon-signout wd-icon" focusable="false" role="presentation" viewBox="0 0 24 24"><g class="wd-icon-container"><path d="M11.5 2a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5h-1z" class="wd-icon-fill"/><path d="M3 12a9.004 9.004 0 0 1 6-8.488v2.162a7 7 0 1 0 6 0V3.512A9.004 9.004 0 0 1 21 12a9 9 0 1 1-18 0z" class="wd-icon-fill"/></g></svg>',
6
+ filename: 'wd-icon-signout',
7
+ category: 'Core',
8
+ tags: ['off','exit','leave'],
9
+ }
10
+ export default icon
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workday/canvas-system-icons-web",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "description": "Workday system icons for web",
5
5
  "license": "CC-BY-ND-4.0",
6
6
  "author": "Workday, Inc. (https://www.workday.com)",
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "devDependencies": {
35
35
  "@workday/canvas-colors-web": "2.0.0",
36
- "@workday/canvas-system-icons": "3.2.0",
36
+ "@workday/canvas-system-icons": "3.3.0",
37
37
  "@workday/icon-utils": "0.25.16",
38
38
  "svg-sprite": "^1.3.7"
39
39
  },
@@ -41,5 +41,5 @@
41
41
  "access": "public",
42
42
  "registry": "https://registry.npmjs.org"
43
43
  },
44
- "gitHead": "df97724e78c20e92bde1137860e99fff9a15538d"
44
+ "gitHead": "5ed42de02b01f7c23e047e7378b0aea3d3d8f077"
45
45
  }