@ringcentral/juno-icon 1.29.0 → 1.31.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/{PrisenceOffline.d.ts → AdvancedSetting.d.ts} +2 -2
- package/AdvancedSetting.js +10 -0
- package/Billing.d.ts +3 -0
- package/Billing.js +10 -0
- package/CalendarDay.d.ts +3 -0
- package/CalendarDay.js +10 -0
- package/CalendarMonth.d.ts +3 -0
- package/CalendarMonth.js +10 -0
- package/{PrisenceAway.d.ts → CalendarWeek.d.ts} +2 -2
- package/CalendarWeek.js +10 -0
- package/Features.d.ts +3 -0
- package/Features.js +10 -0
- package/FolderBorder.d.ts +3 -0
- package/FolderBorder.js +10 -0
- package/{PrisenceAvailable.d.ts → PresenceAvailable.d.ts} +2 -2
- package/PresenceAvailable.js +10 -0
- package/PresenceAway.d.ts +3 -0
- package/PresenceAway.js +10 -0
- package/PresenceDnd.d.ts +3 -0
- package/PresenceDnd.js +10 -0
- package/PresenceOffline.d.ts +3 -0
- package/PresenceOffline.js +10 -0
- package/Recent.d.ts +3 -0
- package/Recent.js +10 -0
- package/WhatIsNew.d.ts +3 -0
- package/WhatIsNew.js +10 -0
- package/es6/AdvancedSetting.js +8 -0
- package/es6/Billing.js +8 -0
- package/es6/CalendarDay.js +8 -0
- package/es6/CalendarMonth.js +8 -0
- package/es6/CalendarWeek.js +8 -0
- package/es6/Features.js +8 -0
- package/es6/FolderBorder.js +8 -0
- package/es6/PresenceAvailable.js +8 -0
- package/es6/PresenceAway.js +8 -0
- package/es6/PresenceDnd.js +8 -0
- package/es6/PresenceOffline.js +8 -0
- package/es6/Recent.js +8 -0
- package/es6/WhatIsNew.js +8 -0
- package/es6/icon-advanced-setting.svg +5 -0
- package/es6/icon-billing.svg +5 -0
- package/es6/icon-calendar-day.svg +5 -0
- package/es6/icon-calendar-month.svg +5 -0
- package/es6/icon-calendar-week.svg +5 -0
- package/es6/icon-features.svg +5 -0
- package/es6/icon-folder_border.svg +5 -0
- package/es6/icon-presence-available.svg +5 -0
- package/es6/icon-presence-away.svg +5 -0
- package/es6/icon-presence-dnd.svg +5 -0
- package/es6/icon-presence-offline.svg +5 -0
- package/es6/icon-recent.svg +5 -0
- package/es6/icon-what-is-new.svg +5 -0
- package/es6/index.js +13 -4
- package/icon-advanced-setting.svg +5 -0
- package/icon-billing.svg +5 -0
- package/icon-calendar-day.svg +5 -0
- package/icon-calendar-month.svg +5 -0
- package/icon-calendar-week.svg +5 -0
- package/icon-features.svg +5 -0
- package/icon-folder_border.svg +5 -0
- package/icon-presence-available.svg +5 -0
- package/icon-presence-away.svg +5 -0
- package/icon-presence-dnd.svg +5 -0
- package/icon-presence-offline.svg +5 -0
- package/icon-recent.svg +5 -0
- package/icon-what-is-new.svg +5 -0
- package/index.d.ts +13 -4
- package/index.js +26 -8
- package/package.json +1 -1
- package/PrisenceAvailable.js +0 -10
- package/PrisenceAway.js +0 -10
- package/PrisenceDontDisturb.d.ts +0 -3
- package/PrisenceDontDisturb.js +0 -10
- package/PrisenceOffline.js +0 -10
- package/es6/PrisenceAvailable.js +0 -8
- package/es6/PrisenceAway.js +0 -8
- package/es6/PrisenceDontDisturb.js +0 -8
- package/es6/PrisenceOffline.js +0 -8
- package/es6/icon-prisence-available.svg +0 -5
- package/es6/icon-prisence-away.svg +0 -5
- package/es6/icon-prisence-dont_disturb.svg +0 -5
- package/es6/icon-prisence-offline.svg +0 -5
- package/icon-prisence-available.svg +0 -5
- package/icon-prisence-away.svg +0 -5
- package/icon-prisence-dont_disturb.svg +0 -5
- package/icon-prisence-offline.svg +0 -5
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
var tslib_1 = require("tslib");
|
|
4
|
+
var React = tslib_1.__importStar(require("react"));
|
|
5
|
+
var react_1 = require("react");
|
|
6
|
+
var PresenceOffline = react_1.memo(react_1.forwardRef(function (props, ref) { return (React.createElement("svg", tslib_1.__assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props),
|
|
7
|
+
React.createElement("path", { d: "M30 16c0 7.732-6.268 14-14 14S2 23.732 2 16 8.268 2 16 2s14 6.268 14 14z" }))); }));
|
|
8
|
+
PresenceOffline.displayName = 'PresenceOffline';
|
|
9
|
+
PresenceOffline['iconName'] = 'presence-offline';
|
|
10
|
+
exports.default = PresenceOffline;
|
package/Recent.d.ts
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const Recent: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<React.SVGProps<SVGSVGElement>, "string" | "key" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "className" | "color" | "height" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "width" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "href" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & React.RefAttributes<SVGSVGElement>>>;
|
|
3
|
+
export default Recent;
|
package/Recent.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
var tslib_1 = require("tslib");
|
|
4
|
+
var React = tslib_1.__importStar(require("react"));
|
|
5
|
+
var react_1 = require("react");
|
|
6
|
+
var Recent = react_1.memo(react_1.forwardRef(function (props, ref) { return (React.createElement("svg", tslib_1.__assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props),
|
|
7
|
+
React.createElement("path", { d: "M17 24a1 1 0 0 1 0 2H3a1 1 0 0 1 0-2h14zm6-13.002.117.007c.459.053.823.418.877.877l.007.117v10.585l3.793-3.792.094-.083a1 1 0 0 1 1.403 1.403l-.083.094-5.5 5.5-.085.076c-.608.491-1.534.107-1.617-.67L22 24.998v-13l.007-.117c.053-.459.418-.823.877-.877l.117-.007zM17 15a1 1 0 0 1 0 2H3a1 1 0 0 1 0-2h14zm12-9a1 1 0 0 1 0 2H3a1 1 0 0 1 0-2h26z" }))); }));
|
|
8
|
+
Recent.displayName = 'Recent';
|
|
9
|
+
Recent['iconName'] = 'recent';
|
|
10
|
+
exports.default = Recent;
|
package/WhatIsNew.d.ts
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const WhatIsNew: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<React.SVGProps<SVGSVGElement>, "string" | "key" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "className" | "color" | "height" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "width" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "href" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & React.RefAttributes<SVGSVGElement>>>;
|
|
3
|
+
export default WhatIsNew;
|
package/WhatIsNew.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
var tslib_1 = require("tslib");
|
|
4
|
+
var React = tslib_1.__importStar(require("react"));
|
|
5
|
+
var react_1 = require("react");
|
|
6
|
+
var WhatIsNew = react_1.memo(react_1.forwardRef(function (props, ref) { return (React.createElement("svg", tslib_1.__assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props),
|
|
7
|
+
React.createElement("path", { d: "M27 3a2 2 0 0 1 2 2v22a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h22zm-8 13H9a1 1 0 0 0-.117 1.993L9 18h10a1 1 0 0 0 .117-1.993L19 16zm4-6H9a1 1 0 0 0-.117 1.993L9 12h14a1 1 0 0 0 .117-1.993L23 10z" }))); }));
|
|
8
|
+
WhatIsNew.displayName = 'WhatIsNew';
|
|
9
|
+
WhatIsNew['iconName'] = 'what-is-new';
|
|
10
|
+
exports.default = WhatIsNew;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { forwardRef, memo } from 'react';
|
|
4
|
+
var AdvancedSetting = memo(forwardRef(function (props, ref) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props),
|
|
5
|
+
React.createElement("path", { d: "M10.612 2a9.24 9.24 0 0 0-8.403 5.393h6.788a2.08 2.08 0 0 1 2.083 2.081v3.031a2.08 2.08 0 0 1-2.083 2.081H2a9.248 9.248 0 0 0 12.268 5.128l9.372 9.366a3.138 3.138 0 0 0 4.44 0 3.136 3.136 0 0 0 0-4.44l-9.228-9.226a9.207 9.207 0 0 0 1-4.186c0-5.097-4.135-9.23-9.239-9.23z" }))); }));
|
|
6
|
+
AdvancedSetting.displayName = 'AdvancedSetting';
|
|
7
|
+
AdvancedSetting['iconName'] = 'advanced-setting';
|
|
8
|
+
export default AdvancedSetting;
|
package/es6/Billing.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { forwardRef, memo } from 'react';
|
|
4
|
+
var Billing = memo(forwardRef(function (props, ref) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props),
|
|
5
|
+
React.createElement("path", { d: "m11.511 21.198-.087.081-2.17 2.316-.67-.715-.091-.087a.875.875 0 0 0-1.228.08c-.325.347-.357.92-.072 1.313l.078.094 1.192 1.272.056.082.065.077a.89.89 0 0 0 1.217.09l.087-.081 2.849-3.04.08-.098a1.045 1.045 0 0 0-.089-1.293.896.896 0 0 0-1.124-.158l-.094.067zM25.005 23h-8.009a.987.987 0 0 0-.995 1c0 .498.384.933.879.993l.116.007h8.009A.987.987 0 0 0 26 24c0-.536-.446-1-.995-1zm-13.494-7.802-.087.081-2.17 2.316-.67-.715-.091-.087a.875.875 0 0 0-1.228.08c-.325.347-.357.92-.072 1.313l.078.094 1.192 1.272.056.082.065.077a.89.89 0 0 0 1.217.09l.087-.081 2.849-3.04.08-.098a1.045 1.045 0 0 0-.089-1.293.892.892 0 0 0-1.217-.091zM25.005 17h-8.009a.987.987 0 0 0-.995 1c0 .498.384.933.879.993l.116.007h8.009A.987.987 0 0 0 26 18c0-.536-.446-1-.995-1zM6 11v2h20V8h2l.136.005c.99.072 1.781.851 1.858 1.83l.006.156v18.016c0 1.05-.82 1.91-1.863 1.987l-.151.005H4.014a2.003 2.003 0 0 1-2.008-1.843L2 28.007V9.991c0-1.1.9-1.992 2.014-1.992H6v3h2v-3c0-1.056.825-1.918 1.847-1.995l.147-.005H11.1a5.003 5.003 0 0 1 4.9-4 5.004 5.004 0 0 1 4.852 3.788l.048.212h1.106a1.99 1.99 0 0 1 1.989 1.848l.005.15v3.002H6zm10-7a2 2 0 1 0 .001 4.001A2 2 0 0 0 16 4z" }))); }));
|
|
6
|
+
Billing.displayName = 'Billing';
|
|
7
|
+
Billing['iconName'] = 'billing';
|
|
8
|
+
export default Billing;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { forwardRef, memo } from 'react';
|
|
4
|
+
var CalendarDay = memo(forwardRef(function (props, ref) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props),
|
|
5
|
+
React.createElement("path", { d: "M26 4a2 2 0 0 1 2 2v20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h20zm-1 2H7a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1zm-3 9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H10a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h12zm-1 2H11v4h10v-4zm1-8a1 1 0 0 1 0 2H10a1 1 0 0 1 0-2h12z" }))); }));
|
|
6
|
+
CalendarDay.displayName = 'CalendarDay';
|
|
7
|
+
CalendarDay['iconName'] = 'calendar-day';
|
|
8
|
+
export default CalendarDay;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { forwardRef, memo } from 'react';
|
|
4
|
+
var CalendarMonth = memo(forwardRef(function (props, ref) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props),
|
|
5
|
+
React.createElement("path", { d: "M26 4a2 2 0 0 1 2 2v20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h20zm-1 2H7a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1zm-15 9a2 2 0 1 1 .001 3.999A2 2 0 0 1 10 15zm6 0a2 2 0 1 1 .001 3.999A2 2 0 0 1 16 15zm-6-6a2 2 0 1 1 .001 3.999A2 2 0 0 1 10 9zm6 0a2 2 0 1 1 .001 3.999A2 2 0 0 1 16 9zm6 0a2 2 0 1 1 .001 3.999A2 2 0 0 1 22 9z" }))); }));
|
|
6
|
+
CalendarMonth.displayName = 'CalendarMonth';
|
|
7
|
+
CalendarMonth['iconName'] = 'calendar-month';
|
|
8
|
+
export default CalendarMonth;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { forwardRef, memo } from 'react';
|
|
4
|
+
var CalendarWeek = memo(forwardRef(function (props, ref) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props),
|
|
5
|
+
React.createElement("path", { d: "M26 4a2 2 0 0 1 2 2v20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h20zm-1 2H7a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1zM10 9a1 1 0 0 1 1 1v12a1 1 0 0 1-.883.993L10 23a1 1 0 0 1-1-1V10a1 1 0 0 1 .883-.993L10 9zm12 0a1 1 0 0 1 1 1v12a1 1 0 0 1-.883.993L22 23a1 1 0 0 1-1-1V10a1 1 0 0 1 .883-.993L22 9zm-6 0a1 1 0 0 1 1 1v12a1 1 0 0 1-.883.993L16 23a1 1 0 0 1-1-1V10a1 1 0 0 1 .883-.993L16 9z" }))); }));
|
|
6
|
+
CalendarWeek.displayName = 'CalendarWeek';
|
|
7
|
+
CalendarWeek['iconName'] = 'calendar-week';
|
|
8
|
+
export default CalendarWeek;
|
package/es6/Features.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { forwardRef, memo } from 'react';
|
|
4
|
+
var Features = memo(forwardRef(function (props, ref) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props),
|
|
5
|
+
React.createElement("path", { d: "M18.197 2.6 11.92 9.42l-4.396 4.836-1.571 1.753-.121.157-.039.056-.109.178c-.02.035-.041.073-.061.112a2.558 2.558 0 0 0-.263.743l-.026.188c-.109 1.176.793 2.039 2.12 2.039h7.468l-2.468 8.765a1.492 1.492 0 0 0 2.533 1.414l2.014-2.224 5.594-6.249 4.416-4.973.087-.186.082-.192c.59-1.522-.381-2.769-1.937-2.769l-7.396-.001 2.847-8.984A1.492 1.492 0 0 0 18.197 2.6z" }))); }));
|
|
6
|
+
Features.displayName = 'Features';
|
|
7
|
+
Features['iconName'] = 'features';
|
|
8
|
+
export default Features;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { forwardRef, memo } from 'react';
|
|
4
|
+
var FolderBorder = memo(forwardRef(function (props, ref) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props),
|
|
5
|
+
React.createElement("path", { d: "m13.281 4.632 1.923 2.052a.996.996 0 0 0 .612.309l.118.007h12.067a2 2 0 0 1 2 2v17a2 2 0 0 1-2 2h-24a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h7.821a2 2 0 0 1 1.459.632zM10.955 6H5a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1h22a1 1 0 0 0 1-1V10a1 1 0 0 0-1-1l-11.419-.021a2.998 2.998 0 0 1-1.836-.928l-1.33-1.419A2 2 0 0 0 10.956 6z" }))); }));
|
|
6
|
+
FolderBorder.displayName = 'FolderBorder';
|
|
7
|
+
FolderBorder['iconName'] = 'folder_border';
|
|
8
|
+
export default FolderBorder;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { forwardRef, memo } from 'react';
|
|
4
|
+
var PresenceAvailable = memo(forwardRef(function (props, ref) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props),
|
|
5
|
+
React.createElement("path", { d: "m29.253 7.261-11.147 20.9A3.452 3.452 0 0 1 15.737 30h-.641a3.345 3.345 0 0 1-2.146-.836l-9.753-8.36a3.483 3.483 0 0 1 3.734-5.797c.227.137.434.306.613.502l6.465 5.573L23.121 4a3.483 3.483 0 0 1 4.626-1.672 3.456 3.456 0 0 1 1.672 4.625l-.167.334v-.028z" }))); }));
|
|
6
|
+
PresenceAvailable.displayName = 'PresenceAvailable';
|
|
7
|
+
PresenceAvailable['iconName'] = 'presence-available';
|
|
8
|
+
export default PresenceAvailable;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { forwardRef, memo } from 'react';
|
|
4
|
+
var PresenceAway = memo(forwardRef(function (props, ref) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props),
|
|
5
|
+
React.createElement("path", { d: "M26.667 22H13.334a3.333 3.333 0 0 1-3.333-3.333V5.334a3.333 3.333 0 1 1 6.666 0v10h10a3.333 3.333 0 1 1 0 6.666z" }))); }));
|
|
6
|
+
PresenceAway.displayName = 'PresenceAway';
|
|
7
|
+
PresenceAway['iconName'] = 'presence-away';
|
|
8
|
+
export default PresenceAway;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { forwardRef, memo } from 'react';
|
|
4
|
+
var PresenceDnd = memo(forwardRef(function (props, ref) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props),
|
|
5
|
+
React.createElement("path", { d: "M27.083 18.833H4.916a2.917 2.917 0 0 1 0-5.834h22.167a2.917 2.917 0 0 1 0 5.834z" }))); }));
|
|
6
|
+
PresenceDnd.displayName = 'PresenceDnd';
|
|
7
|
+
PresenceDnd['iconName'] = 'presence-dnd';
|
|
8
|
+
export default PresenceDnd;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { forwardRef, memo } from 'react';
|
|
4
|
+
var PresenceOffline = memo(forwardRef(function (props, ref) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props),
|
|
5
|
+
React.createElement("path", { d: "M30 16c0 7.732-6.268 14-14 14S2 23.732 2 16 8.268 2 16 2s14 6.268 14 14z" }))); }));
|
|
6
|
+
PresenceOffline.displayName = 'PresenceOffline';
|
|
7
|
+
PresenceOffline['iconName'] = 'presence-offline';
|
|
8
|
+
export default PresenceOffline;
|
package/es6/Recent.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { forwardRef, memo } from 'react';
|
|
4
|
+
var Recent = memo(forwardRef(function (props, ref) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props),
|
|
5
|
+
React.createElement("path", { d: "M17 24a1 1 0 0 1 0 2H3a1 1 0 0 1 0-2h14zm6-13.002.117.007c.459.053.823.418.877.877l.007.117v10.585l3.793-3.792.094-.083a1 1 0 0 1 1.403 1.403l-.083.094-5.5 5.5-.085.076c-.608.491-1.534.107-1.617-.67L22 24.998v-13l.007-.117c.053-.459.418-.823.877-.877l.117-.007zM17 15a1 1 0 0 1 0 2H3a1 1 0 0 1 0-2h14zm12-9a1 1 0 0 1 0 2H3a1 1 0 0 1 0-2h26z" }))); }));
|
|
6
|
+
Recent.displayName = 'Recent';
|
|
7
|
+
Recent['iconName'] = 'recent';
|
|
8
|
+
export default Recent;
|
package/es6/WhatIsNew.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { forwardRef, memo } from 'react';
|
|
4
|
+
var WhatIsNew = memo(forwardRef(function (props, ref) { return (React.createElement("svg", __assign({ viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props),
|
|
5
|
+
React.createElement("path", { d: "M27 3a2 2 0 0 1 2 2v22a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h22zm-8 13H9a1 1 0 0 0-.117 1.993L9 18h10a1 1 0 0 0 .117-1.993L19 16zm4-6H9a1 1 0 0 0-.117 1.993L9 12h14a1 1 0 0 0 .117-1.993L23 10z" }))); }));
|
|
6
|
+
WhatIsNew.displayName = 'WhatIsNew';
|
|
7
|
+
WhatIsNew['iconName'] = 'what-is-new';
|
|
8
|
+
export default WhatIsNew;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>advanced-setting</title>
|
|
4
|
+
<path d="M10.612 2c-3.732 0-6.944 2.211-8.403 5.393h6.788c1.152 0 2.083 0.931 2.083 2.081v3.031c0 1.151-0.931 2.081-2.083 2.081h-6.997c1.345 3.441 4.694 5.88 8.612 5.88 1.3 0 2.535-0.27 3.656-0.752l9.372 9.366c0.612 0.611 1.418 0.919 2.22 0.919s1.608-0.308 2.22-0.919c1.228-1.227 1.228-3.213 0-4.44l-9.228-9.226c0.639-1.257 1-2.678 1-4.186 0-5.097-4.135-9.23-9.239-9.23v0z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>billing</title>
|
|
4
|
+
<path d="M11.511 21.198l-0.087 0.081-2.17 2.316-0.67-0.715-0.091-0.087c-0.377-0.316-0.893-0.277-1.228 0.080-0.325 0.347-0.357 0.92-0.072 1.313l0.078 0.094 1.192 1.272 0.056 0.082 0.065 0.077c0.325 0.347 0.856 0.387 1.217 0.090l0.087-0.081 2.849-3.040 0.080-0.098c0.268-0.378 0.243-0.939-0.089-1.293-0.298-0.318-0.769-0.378-1.124-0.158l-0.094 0.067zM25.005 23h-8.009c-0.566 0-0.995 0.448-0.995 1 0 0.498 0.384 0.933 0.879 0.993l0.116 0.007h8.009c0.566 0 0.995-0.448 0.995-1 0-0.536-0.446-1-0.995-1zM11.511 15.198l-0.087 0.081-2.17 2.316-0.67-0.715-0.091-0.087c-0.377-0.316-0.893-0.277-1.228 0.080-0.325 0.347-0.357 0.92-0.072 1.313l0.078 0.094 1.192 1.272 0.056 0.082 0.065 0.077c0.325 0.347 0.856 0.387 1.217 0.090l0.087-0.081 2.849-3.040 0.080-0.098c0.268-0.378 0.243-0.939-0.089-1.293-0.325-0.347-0.856-0.387-1.217-0.091zM25.005 17h-8.009c-0.566 0-0.995 0.448-0.995 1 0 0.498 0.384 0.933 0.879 0.993l0.116 0.007h8.009c0.566 0 0.995-0.448 0.995-1 0-0.536-0.446-1-0.995-1zM6 11v2h20v-5h2l0.136 0.005c0.99 0.072 1.781 0.851 1.858 1.83l0.006 0.156v18.016c0 1.050-0.82 1.91-1.863 1.987l-0.151 0.005h-23.972c-1.061 0-1.932-0.811-2.008-1.843l-0.006-0.149v-18.016c0-1.1 0.9-1.992 2.014-1.992h1.986v3h2v-3c0-1.056 0.825-1.918 1.847-1.995l0.147-0.005h1.106c0.464-2.282 2.482-4 4.9-4 2.342 0 4.309 1.612 4.852 3.788l0.048 0.212h1.106c1.052 0 1.912 0.807 1.989 1.848l0.005 0.15v3.002h-18zM16 4c-1.104 0-2 0.896-2 2s0.896 2 2 2c1.104 0 2-0.896 2-2s-0.896-2-2-2z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>calendar-day</title>
|
|
4
|
+
<path d="M26 4c1.105 0 2 0.895 2 2v20c0 1.105-0.895 2-2 2h-20c-1.105 0-2-0.895-2-2v-20c0-1.105 0.895-2 2-2h20zM25 6h-18c-0.552 0-1 0.448-1 1v18c0 0.552 0.448 1 1 1h18c0.552 0 1-0.448 1-1v-18c0-0.552-0.448-1-1-1zM22 15c0.552 0 1 0.448 1 1v6c0 0.552-0.448 1-1 1h-12c-0.552 0-1-0.448-1-1v-6c0-0.552 0.448-1 1-1h12zM21 17h-10v4h10v-4zM22 9c0.552 0 1 0.448 1 1s-0.448 1-1 1h-12c-0.552 0-1-0.448-1-1s0.448-1 1-1h12z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>calendar-month</title>
|
|
4
|
+
<path d="M26 4c1.105 0 2 0.895 2 2v20c0 1.105-0.895 2-2 2h-20c-1.105 0-2-0.895-2-2v-20c0-1.105 0.895-2 2-2h20zM25 6h-18c-0.552 0-1 0.448-1 1v18c0 0.552 0.448 1 1 1h18c0.552 0 1-0.448 1-1v-18c0-0.552-0.448-1-1-1zM10 15c1.105 0 2 0.895 2 2s-0.895 2-2 2c-1.105 0-2-0.895-2-2s0.895-2 2-2zM16 15c1.105 0 2 0.895 2 2s-0.895 2-2 2c-1.105 0-2-0.895-2-2s0.895-2 2-2zM10 9c1.105 0 2 0.895 2 2s-0.895 2-2 2c-1.105 0-2-0.895-2-2s0.895-2 2-2zM16 9c1.105 0 2 0.895 2 2s-0.895 2-2 2c-1.105 0-2-0.895-2-2s0.895-2 2-2zM22 9c1.105 0 2 0.895 2 2s-0.895 2-2 2c-1.105 0-2-0.895-2-2s0.895-2 2-2z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>calendar-week</title>
|
|
4
|
+
<path d="M26 4c1.105 0 2 0.895 2 2v20c0 1.105-0.895 2-2 2h-20c-1.105 0-2-0.895-2-2v-20c0-1.105 0.895-2 2-2h20zM25 6h-18c-0.552 0-1 0.448-1 1v18c0 0.552 0.448 1 1 1h18c0.552 0 1-0.448 1-1v-18c0-0.552-0.448-1-1-1zM10 9c0.552 0 1 0.448 1 1v12c0 0.513-0.386 0.936-0.883 0.993l-0.117 0.007c-0.552 0-1-0.448-1-1v-12c0-0.513 0.386-0.935 0.883-0.993l0.117-0.007zM22 9c0.552 0 1 0.448 1 1v12c0 0.513-0.386 0.936-0.883 0.993l-0.117 0.007c-0.552 0-1-0.448-1-1v-12c0-0.513 0.386-0.935 0.883-0.993l0.117-0.007zM16 9c0.552 0 1 0.448 1 1v12c0 0.513-0.386 0.936-0.883 0.993l-0.117 0.007c-0.552 0-1-0.448-1-1v-12c0-0.513 0.386-0.935 0.883-0.993l0.117-0.007z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>features</title>
|
|
4
|
+
<path d="M18.197 2.6l-6.277 6.82-4.396 4.836-1.571 1.753-0.121 0.157-0.039 0.056-0.109 0.178c-0.020 0.035-0.041 0.073-0.061 0.112-0.122 0.233-0.215 0.475-0.263 0.743l-0.026 0.188c-0.109 1.176 0.793 2.039 2.12 2.039l7.468-0-2.468 8.765c-0.153 0.544 0.014 1.127 0.431 1.507 0.608 0.553 1.547 0.51 2.102-0.093l2.014-2.224 5.594-6.249 4.416-4.973 0.087-0.186 0.082-0.192c0.59-1.522-0.381-2.769-1.937-2.769l-7.396-0.001 2.847-8.984c0.174-0.551 0.015-1.153-0.409-1.545-0.599-0.554-1.528-0.521-2.088 0.062l0-0z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>folder_border</title>
|
|
4
|
+
<path d="M13.281 4.632l1.923 2.052c0.162 0.173 0.379 0.282 0.612 0.309l0.118 0.007h12.067c1.105 0 2 0.895 2 2v17c0 1.105-0.895 2-2 2h-24c-1.105 0-2-0.895-2-2v-20c0-1.105 0.895-2 2-2h7.821c0.553 0 1.081 0.229 1.459 0.632zM10.955 6h-5.955c-0.552 0-1 0.448-1 1v18c0 0.552 0.448 1 1 1h22c0.552 0 1-0.448 1-1v-15c0-0.552-0.448-1-1-1l-11.419-0.021c-0.701-0.083-1.352-0.411-1.836-0.928l-1.33-1.419c-0.378-0.403-0.906-0.632-1.459-0.632z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>presence-available</title>
|
|
4
|
+
<path d="M29.253 7.261l-11.147 20.9c-0.469 0.942-1.34 1.619-2.369 1.839h-0.641c-0.792-0.016-1.552-0.312-2.146-0.836l-9.753-8.36c-1.306-1.136-1.58-3.059-0.642-4.515s2.802-2.001 4.376-1.282c0.227 0.137 0.434 0.306 0.613 0.502l6.465 5.573 9.112-17.082c0.818-1.737 2.887-2.485 4.626-1.672 0.839 0.387 1.489 1.094 1.803 1.963s0.267 1.828-0.131 2.662l-0.167 0.334v-0.028z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>presence-away</title>
|
|
4
|
+
<path d="M26.667 22h-13.333c-1.841 0-3.333-1.492-3.333-3.333v-13.333c0-1.841 1.492-3.333 3.333-3.333s3.333 1.492 3.333 3.333v10h10c1.841 0 3.333 1.492 3.333 3.333s-1.492 3.333-3.333 3.333z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>presence-dnd</title>
|
|
4
|
+
<path d="M27.083 18.833h-22.167c-1.611 0-2.917-1.306-2.917-2.917s1.306-2.917 2.917-2.917h22.167c1.611 0 2.917 1.306 2.917 2.917s-1.306 2.917-2.917 2.917v0z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>presence-offline</title>
|
|
4
|
+
<path d="M30 16c0 7.732-6.268 14-14 14s-14-6.268-14-14c0-7.732 6.268-14 14-14s14 6.268 14 14z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>recent</title>
|
|
4
|
+
<path d="M17 24c0.552 0 1 0.448 1 1s-0.448 1-1 1h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14zM23 10.998l0.117 0.007c0.459 0.053 0.823 0.418 0.877 0.877l0.007 0.117v10.585l3.793-3.792 0.094-0.083c0.392-0.305 0.96-0.277 1.32 0.083s0.388 0.928 0.083 1.32l-0.083 0.094-5.5 5.5-0.085 0.076c-0.608 0.491-1.534 0.107-1.617-0.67l-0.006-0.114v-13l0.007-0.117c0.053-0.459 0.418-0.823 0.877-0.877l0.117-0.007zM17 15c0.552 0 1 0.448 1 1s-0.448 1-1 1h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14zM29 6c0.552 0 1 0.448 1 1s-0.448 1-1 1h-26c-0.552 0-1-0.448-1-1s0.448-1 1-1h26z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>what-is-new</title>
|
|
4
|
+
<path d="M27 3c1.105 0 2 0.895 2 2v22c0 1.105-0.895 2-2 2h-22c-1.105 0-2-0.895-2-2v-22c0-1.105 0.895-2 2-2h22zM19 16h-10c-0.552 0-1 0.448-1 1 0 0.513 0.386 0.936 0.883 0.993l0.117 0.007h10c0.552 0 1-0.448 1-1 0-0.513-0.386-0.936-0.883-0.993l-0.117-0.007zM23 10h-14c-0.552 0-1 0.448-1 1 0 0.513 0.386 0.935 0.883 0.993l0.117 0.007h14c0.552 0 1-0.448 1-1 0-0.513-0.386-0.935-0.883-0.993l-0.117-0.007z"></path>
|
|
5
|
+
</svg>
|
package/es6/index.js
CHANGED
|
@@ -46,6 +46,7 @@ export { default as Add } from './Add';
|
|
|
46
46
|
export { default as Address } from './Address';
|
|
47
47
|
export { default as AdminBorder } from './AdminBorder';
|
|
48
48
|
export { default as Admin } from './Admin';
|
|
49
|
+
export { default as AdvancedSetting } from './AdvancedSetting';
|
|
49
50
|
export { default as Advanced } from './Advanced';
|
|
50
51
|
export { default as AlignCenter } from './AlignCenter';
|
|
51
52
|
export { default as AlignJustify } from './AlignJustify';
|
|
@@ -78,6 +79,7 @@ export { default as AudioLow } from './AudioLow';
|
|
|
78
79
|
export { default as Audio } from './Audio';
|
|
79
80
|
export { default as AvatarRooms } from './AvatarRooms';
|
|
80
81
|
export { default as Barge } from './Barge';
|
|
82
|
+
export { default as Billing } from './Billing';
|
|
81
83
|
export { default as Birthday } from './Birthday';
|
|
82
84
|
export { default as Blocked } from './Blocked';
|
|
83
85
|
export { default as Bold } from './Bold';
|
|
@@ -86,6 +88,9 @@ export { default as Bookmark } from './Bookmark';
|
|
|
86
88
|
export { default as Box } from './Box';
|
|
87
89
|
export { default as BubbleLines } from './BubbleLines';
|
|
88
90
|
export { default as BubbleLinesBorder } from './BubbleLinesBorder';
|
|
91
|
+
export { default as CalendarDay } from './CalendarDay';
|
|
92
|
+
export { default as CalendarMonth } from './CalendarMonth';
|
|
93
|
+
export { default as CalendarWeek } from './CalendarWeek';
|
|
89
94
|
export { default as CallAdd } from './CallAdd';
|
|
90
95
|
export { default as CallList } from './CallList';
|
|
91
96
|
export { default as CallMore } from './CallMore';
|
|
@@ -170,10 +175,12 @@ export { default as FailedFaxBorder } from './FailedFaxBorder';
|
|
|
170
175
|
export { default as FailedFax } from './FailedFax';
|
|
171
176
|
export { default as FaxBorder } from './FaxBorder';
|
|
172
177
|
export { default as Fax } from './Fax';
|
|
178
|
+
export { default as Features } from './Features';
|
|
173
179
|
export { default as Feedback } from './Feedback';
|
|
174
180
|
export { default as FileBorder } from './FileBorder';
|
|
175
181
|
export { default as File } from './File';
|
|
176
182
|
export { default as Filter } from './Filter';
|
|
183
|
+
export { default as FolderBorder } from './FolderBorder';
|
|
177
184
|
export { default as Foldercreated } from './Foldercreated';
|
|
178
185
|
export { default as FontColor } from './FontColor';
|
|
179
186
|
export { default as Forward } from './Forward';
|
|
@@ -335,11 +342,11 @@ export { default as PopIn } from './PopIn';
|
|
|
335
342
|
export { default as PopOut } from './PopOut';
|
|
336
343
|
export { default as PptD } from './PptD';
|
|
337
344
|
export { default as Ppt } from './Ppt';
|
|
345
|
+
export { default as PresenceAvailable } from './PresenceAvailable';
|
|
346
|
+
export { default as PresenceAway } from './PresenceAway';
|
|
347
|
+
export { default as PresenceDnd } from './PresenceDnd';
|
|
348
|
+
export { default as PresenceOffline } from './PresenceOffline';
|
|
338
349
|
export { default as Previous } from './Previous';
|
|
339
|
-
export { default as PrisenceAvailable } from './PrisenceAvailable';
|
|
340
|
-
export { default as PrisenceAway } from './PrisenceAway';
|
|
341
|
-
export { default as PrisenceDontDisturb } from './PrisenceDontDisturb';
|
|
342
|
-
export { default as PrisenceOffline } from './PrisenceOffline';
|
|
343
350
|
export { default as Quote } from './Quote';
|
|
344
351
|
export { default as RadioUnselect } from './RadioUnselect';
|
|
345
352
|
export { default as Radio } from './Radio';
|
|
@@ -353,6 +360,7 @@ export { default as RcHelp } from './RcHelp';
|
|
|
353
360
|
export { default as RcvMicOff } from './RcvMicOff';
|
|
354
361
|
export { default as RcvVideocamOff } from './RcvVideocamOff';
|
|
355
362
|
export { default as Read } from './Read';
|
|
363
|
+
export { default as Recent } from './Recent';
|
|
356
364
|
export { default as RecordBorder } from './RecordBorder';
|
|
357
365
|
export { default as Record } from './Record';
|
|
358
366
|
export { default as Refresh } from './Refresh';
|
|
@@ -457,6 +465,7 @@ export { default as WebinarBorder } from './WebinarBorder';
|
|
|
457
465
|
export { default as Webinar } from './Webinar';
|
|
458
466
|
export { default as Webpage } from './Webpage';
|
|
459
467
|
export { default as Welcome } from './Welcome';
|
|
468
|
+
export { default as WhatIsNew } from './WhatIsNew';
|
|
460
469
|
export { default as Whisper } from './Whisper';
|
|
461
470
|
export { default as Whiteboard } from './Whiteboard';
|
|
462
471
|
export { default as Work } from './Work';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>advanced-setting</title>
|
|
4
|
+
<path d="M10.612 2c-3.732 0-6.944 2.211-8.403 5.393h6.788c1.152 0 2.083 0.931 2.083 2.081v3.031c0 1.151-0.931 2.081-2.083 2.081h-6.997c1.345 3.441 4.694 5.88 8.612 5.88 1.3 0 2.535-0.27 3.656-0.752l9.372 9.366c0.612 0.611 1.418 0.919 2.22 0.919s1.608-0.308 2.22-0.919c1.228-1.227 1.228-3.213 0-4.44l-9.228-9.226c0.639-1.257 1-2.678 1-4.186 0-5.097-4.135-9.23-9.239-9.23v0z"></path>
|
|
5
|
+
</svg>
|
package/icon-billing.svg
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>billing</title>
|
|
4
|
+
<path d="M11.511 21.198l-0.087 0.081-2.17 2.316-0.67-0.715-0.091-0.087c-0.377-0.316-0.893-0.277-1.228 0.080-0.325 0.347-0.357 0.92-0.072 1.313l0.078 0.094 1.192 1.272 0.056 0.082 0.065 0.077c0.325 0.347 0.856 0.387 1.217 0.090l0.087-0.081 2.849-3.040 0.080-0.098c0.268-0.378 0.243-0.939-0.089-1.293-0.298-0.318-0.769-0.378-1.124-0.158l-0.094 0.067zM25.005 23h-8.009c-0.566 0-0.995 0.448-0.995 1 0 0.498 0.384 0.933 0.879 0.993l0.116 0.007h8.009c0.566 0 0.995-0.448 0.995-1 0-0.536-0.446-1-0.995-1zM11.511 15.198l-0.087 0.081-2.17 2.316-0.67-0.715-0.091-0.087c-0.377-0.316-0.893-0.277-1.228 0.080-0.325 0.347-0.357 0.92-0.072 1.313l0.078 0.094 1.192 1.272 0.056 0.082 0.065 0.077c0.325 0.347 0.856 0.387 1.217 0.090l0.087-0.081 2.849-3.040 0.080-0.098c0.268-0.378 0.243-0.939-0.089-1.293-0.325-0.347-0.856-0.387-1.217-0.091zM25.005 17h-8.009c-0.566 0-0.995 0.448-0.995 1 0 0.498 0.384 0.933 0.879 0.993l0.116 0.007h8.009c0.566 0 0.995-0.448 0.995-1 0-0.536-0.446-1-0.995-1zM6 11v2h20v-5h2l0.136 0.005c0.99 0.072 1.781 0.851 1.858 1.83l0.006 0.156v18.016c0 1.050-0.82 1.91-1.863 1.987l-0.151 0.005h-23.972c-1.061 0-1.932-0.811-2.008-1.843l-0.006-0.149v-18.016c0-1.1 0.9-1.992 2.014-1.992h1.986v3h2v-3c0-1.056 0.825-1.918 1.847-1.995l0.147-0.005h1.106c0.464-2.282 2.482-4 4.9-4 2.342 0 4.309 1.612 4.852 3.788l0.048 0.212h1.106c1.052 0 1.912 0.807 1.989 1.848l0.005 0.15v3.002h-18zM16 4c-1.104 0-2 0.896-2 2s0.896 2 2 2c1.104 0 2-0.896 2-2s-0.896-2-2-2z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>calendar-day</title>
|
|
4
|
+
<path d="M26 4c1.105 0 2 0.895 2 2v20c0 1.105-0.895 2-2 2h-20c-1.105 0-2-0.895-2-2v-20c0-1.105 0.895-2 2-2h20zM25 6h-18c-0.552 0-1 0.448-1 1v18c0 0.552 0.448 1 1 1h18c0.552 0 1-0.448 1-1v-18c0-0.552-0.448-1-1-1zM22 15c0.552 0 1 0.448 1 1v6c0 0.552-0.448 1-1 1h-12c-0.552 0-1-0.448-1-1v-6c0-0.552 0.448-1 1-1h12zM21 17h-10v4h10v-4zM22 9c0.552 0 1 0.448 1 1s-0.448 1-1 1h-12c-0.552 0-1-0.448-1-1s0.448-1 1-1h12z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>calendar-month</title>
|
|
4
|
+
<path d="M26 4c1.105 0 2 0.895 2 2v20c0 1.105-0.895 2-2 2h-20c-1.105 0-2-0.895-2-2v-20c0-1.105 0.895-2 2-2h20zM25 6h-18c-0.552 0-1 0.448-1 1v18c0 0.552 0.448 1 1 1h18c0.552 0 1-0.448 1-1v-18c0-0.552-0.448-1-1-1zM10 15c1.105 0 2 0.895 2 2s-0.895 2-2 2c-1.105 0-2-0.895-2-2s0.895-2 2-2zM16 15c1.105 0 2 0.895 2 2s-0.895 2-2 2c-1.105 0-2-0.895-2-2s0.895-2 2-2zM10 9c1.105 0 2 0.895 2 2s-0.895 2-2 2c-1.105 0-2-0.895-2-2s0.895-2 2-2zM16 9c1.105 0 2 0.895 2 2s-0.895 2-2 2c-1.105 0-2-0.895-2-2s0.895-2 2-2zM22 9c1.105 0 2 0.895 2 2s-0.895 2-2 2c-1.105 0-2-0.895-2-2s0.895-2 2-2z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>calendar-week</title>
|
|
4
|
+
<path d="M26 4c1.105 0 2 0.895 2 2v20c0 1.105-0.895 2-2 2h-20c-1.105 0-2-0.895-2-2v-20c0-1.105 0.895-2 2-2h20zM25 6h-18c-0.552 0-1 0.448-1 1v18c0 0.552 0.448 1 1 1h18c0.552 0 1-0.448 1-1v-18c0-0.552-0.448-1-1-1zM10 9c0.552 0 1 0.448 1 1v12c0 0.513-0.386 0.936-0.883 0.993l-0.117 0.007c-0.552 0-1-0.448-1-1v-12c0-0.513 0.386-0.935 0.883-0.993l0.117-0.007zM22 9c0.552 0 1 0.448 1 1v12c0 0.513-0.386 0.936-0.883 0.993l-0.117 0.007c-0.552 0-1-0.448-1-1v-12c0-0.513 0.386-0.935 0.883-0.993l0.117-0.007zM16 9c0.552 0 1 0.448 1 1v12c0 0.513-0.386 0.936-0.883 0.993l-0.117 0.007c-0.552 0-1-0.448-1-1v-12c0-0.513 0.386-0.935 0.883-0.993l0.117-0.007z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>features</title>
|
|
4
|
+
<path d="M18.197 2.6l-6.277 6.82-4.396 4.836-1.571 1.753-0.121 0.157-0.039 0.056-0.109 0.178c-0.020 0.035-0.041 0.073-0.061 0.112-0.122 0.233-0.215 0.475-0.263 0.743l-0.026 0.188c-0.109 1.176 0.793 2.039 2.12 2.039l7.468-0-2.468 8.765c-0.153 0.544 0.014 1.127 0.431 1.507 0.608 0.553 1.547 0.51 2.102-0.093l2.014-2.224 5.594-6.249 4.416-4.973 0.087-0.186 0.082-0.192c0.59-1.522-0.381-2.769-1.937-2.769l-7.396-0.001 2.847-8.984c0.174-0.551 0.015-1.153-0.409-1.545-0.599-0.554-1.528-0.521-2.088 0.062l0-0z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>folder_border</title>
|
|
4
|
+
<path d="M13.281 4.632l1.923 2.052c0.162 0.173 0.379 0.282 0.612 0.309l0.118 0.007h12.067c1.105 0 2 0.895 2 2v17c0 1.105-0.895 2-2 2h-24c-1.105 0-2-0.895-2-2v-20c0-1.105 0.895-2 2-2h7.821c0.553 0 1.081 0.229 1.459 0.632zM10.955 6h-5.955c-0.552 0-1 0.448-1 1v18c0 0.552 0.448 1 1 1h22c0.552 0 1-0.448 1-1v-15c0-0.552-0.448-1-1-1l-11.419-0.021c-0.701-0.083-1.352-0.411-1.836-0.928l-1.33-1.419c-0.378-0.403-0.906-0.632-1.459-0.632z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>presence-available</title>
|
|
4
|
+
<path d="M29.253 7.261l-11.147 20.9c-0.469 0.942-1.34 1.619-2.369 1.839h-0.641c-0.792-0.016-1.552-0.312-2.146-0.836l-9.753-8.36c-1.306-1.136-1.58-3.059-0.642-4.515s2.802-2.001 4.376-1.282c0.227 0.137 0.434 0.306 0.613 0.502l6.465 5.573 9.112-17.082c0.818-1.737 2.887-2.485 4.626-1.672 0.839 0.387 1.489 1.094 1.803 1.963s0.267 1.828-0.131 2.662l-0.167 0.334v-0.028z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>presence-away</title>
|
|
4
|
+
<path d="M26.667 22h-13.333c-1.841 0-3.333-1.492-3.333-3.333v-13.333c0-1.841 1.492-3.333 3.333-3.333s3.333 1.492 3.333 3.333v10h10c1.841 0 3.333 1.492 3.333 3.333s-1.492 3.333-3.333 3.333z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>presence-dnd</title>
|
|
4
|
+
<path d="M27.083 18.833h-22.167c-1.611 0-2.917-1.306-2.917-2.917s1.306-2.917 2.917-2.917h22.167c1.611 0 2.917 1.306 2.917 2.917s-1.306 2.917-2.917 2.917v0z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>presence-offline</title>
|
|
4
|
+
<path d="M30 16c0 7.732-6.268 14-14 14s-14-6.268-14-14c0-7.732 6.268-14 14-14s14 6.268 14 14z"></path>
|
|
5
|
+
</svg>
|
package/icon-recent.svg
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>recent</title>
|
|
4
|
+
<path d="M17 24c0.552 0 1 0.448 1 1s-0.448 1-1 1h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14zM23 10.998l0.117 0.007c0.459 0.053 0.823 0.418 0.877 0.877l0.007 0.117v10.585l3.793-3.792 0.094-0.083c0.392-0.305 0.96-0.277 1.32 0.083s0.388 0.928 0.083 1.32l-0.083 0.094-5.5 5.5-0.085 0.076c-0.608 0.491-1.534 0.107-1.617-0.67l-0.006-0.114v-13l0.007-0.117c0.053-0.459 0.418-0.823 0.877-0.877l0.117-0.007zM17 15c0.552 0 1 0.448 1 1s-0.448 1-1 1h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14zM29 6c0.552 0 1 0.448 1 1s-0.448 1-1 1h-26c-0.552 0-1-0.448-1-1s0.448-1 1-1h26z"></path>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>what-is-new</title>
|
|
4
|
+
<path d="M27 3c1.105 0 2 0.895 2 2v22c0 1.105-0.895 2-2 2h-22c-1.105 0-2-0.895-2-2v-22c0-1.105 0.895-2 2-2h22zM19 16h-10c-0.552 0-1 0.448-1 1 0 0.513 0.386 0.936 0.883 0.993l0.117 0.007h10c0.552 0 1-0.448 1-1 0-0.513-0.386-0.936-0.883-0.993l-0.117-0.007zM23 10h-14c-0.552 0-1 0.448-1 1 0 0.513 0.386 0.935 0.883 0.993l0.117 0.007h14c0.552 0 1-0.448 1-1 0-0.513-0.386-0.935-0.883-0.993l-0.117-0.007z"></path>
|
|
5
|
+
</svg>
|
package/index.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ export { default as Add } from './Add';
|
|
|
46
46
|
export { default as Address } from './Address';
|
|
47
47
|
export { default as AdminBorder } from './AdminBorder';
|
|
48
48
|
export { default as Admin } from './Admin';
|
|
49
|
+
export { default as AdvancedSetting } from './AdvancedSetting';
|
|
49
50
|
export { default as Advanced } from './Advanced';
|
|
50
51
|
export { default as AlignCenter } from './AlignCenter';
|
|
51
52
|
export { default as AlignJustify } from './AlignJustify';
|
|
@@ -78,6 +79,7 @@ export { default as AudioLow } from './AudioLow';
|
|
|
78
79
|
export { default as Audio } from './Audio';
|
|
79
80
|
export { default as AvatarRooms } from './AvatarRooms';
|
|
80
81
|
export { default as Barge } from './Barge';
|
|
82
|
+
export { default as Billing } from './Billing';
|
|
81
83
|
export { default as Birthday } from './Birthday';
|
|
82
84
|
export { default as Blocked } from './Blocked';
|
|
83
85
|
export { default as Bold } from './Bold';
|
|
@@ -86,6 +88,9 @@ export { default as Bookmark } from './Bookmark';
|
|
|
86
88
|
export { default as Box } from './Box';
|
|
87
89
|
export { default as BubbleLines } from './BubbleLines';
|
|
88
90
|
export { default as BubbleLinesBorder } from './BubbleLinesBorder';
|
|
91
|
+
export { default as CalendarDay } from './CalendarDay';
|
|
92
|
+
export { default as CalendarMonth } from './CalendarMonth';
|
|
93
|
+
export { default as CalendarWeek } from './CalendarWeek';
|
|
89
94
|
export { default as CallAdd } from './CallAdd';
|
|
90
95
|
export { default as CallList } from './CallList';
|
|
91
96
|
export { default as CallMore } from './CallMore';
|
|
@@ -170,10 +175,12 @@ export { default as FailedFaxBorder } from './FailedFaxBorder';
|
|
|
170
175
|
export { default as FailedFax } from './FailedFax';
|
|
171
176
|
export { default as FaxBorder } from './FaxBorder';
|
|
172
177
|
export { default as Fax } from './Fax';
|
|
178
|
+
export { default as Features } from './Features';
|
|
173
179
|
export { default as Feedback } from './Feedback';
|
|
174
180
|
export { default as FileBorder } from './FileBorder';
|
|
175
181
|
export { default as File } from './File';
|
|
176
182
|
export { default as Filter } from './Filter';
|
|
183
|
+
export { default as FolderBorder } from './FolderBorder';
|
|
177
184
|
export { default as Foldercreated } from './Foldercreated';
|
|
178
185
|
export { default as FontColor } from './FontColor';
|
|
179
186
|
export { default as Forward } from './Forward';
|
|
@@ -335,11 +342,11 @@ export { default as PopIn } from './PopIn';
|
|
|
335
342
|
export { default as PopOut } from './PopOut';
|
|
336
343
|
export { default as PptD } from './PptD';
|
|
337
344
|
export { default as Ppt } from './Ppt';
|
|
345
|
+
export { default as PresenceAvailable } from './PresenceAvailable';
|
|
346
|
+
export { default as PresenceAway } from './PresenceAway';
|
|
347
|
+
export { default as PresenceDnd } from './PresenceDnd';
|
|
348
|
+
export { default as PresenceOffline } from './PresenceOffline';
|
|
338
349
|
export { default as Previous } from './Previous';
|
|
339
|
-
export { default as PrisenceAvailable } from './PrisenceAvailable';
|
|
340
|
-
export { default as PrisenceAway } from './PrisenceAway';
|
|
341
|
-
export { default as PrisenceDontDisturb } from './PrisenceDontDisturb';
|
|
342
|
-
export { default as PrisenceOffline } from './PrisenceOffline';
|
|
343
350
|
export { default as Quote } from './Quote';
|
|
344
351
|
export { default as RadioUnselect } from './RadioUnselect';
|
|
345
352
|
export { default as Radio } from './Radio';
|
|
@@ -353,6 +360,7 @@ export { default as RcHelp } from './RcHelp';
|
|
|
353
360
|
export { default as RcvMicOff } from './RcvMicOff';
|
|
354
361
|
export { default as RcvVideocamOff } from './RcvVideocamOff';
|
|
355
362
|
export { default as Read } from './Read';
|
|
363
|
+
export { default as Recent } from './Recent';
|
|
356
364
|
export { default as RecordBorder } from './RecordBorder';
|
|
357
365
|
export { default as Record } from './Record';
|
|
358
366
|
export { default as Refresh } from './Refresh';
|
|
@@ -457,6 +465,7 @@ export { default as WebinarBorder } from './WebinarBorder';
|
|
|
457
465
|
export { default as Webinar } from './Webinar';
|
|
458
466
|
export { default as Webpage } from './Webpage';
|
|
459
467
|
export { default as Welcome } from './Welcome';
|
|
468
|
+
export { default as WhatIsNew } from './WhatIsNew';
|
|
460
469
|
export { default as Whisper } from './Whisper';
|
|
461
470
|
export { default as Whiteboard } from './Whiteboard';
|
|
462
471
|
export { default as Work } from './Work';
|