@icons-pack/react-simple-icons 5.10.0 → 5.11.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.
Files changed (53) hide show
  1. package/README.md +1 -1
  2. package/dist/cjs/components/Backstage.d.ts +31 -0
  3. package/dist/cjs/components/Backstage.d.ts.map +1 -0
  4. package/dist/cjs/components/Backstage.js +1 -0
  5. package/dist/cjs/components/EThree.d.ts +31 -0
  6. package/dist/cjs/components/EThree.d.ts.map +1 -0
  7. package/dist/cjs/components/EThree.js +1 -0
  8. package/dist/cjs/components/Elgato.d.ts +31 -0
  9. package/dist/cjs/components/Elgato.d.ts.map +1 -0
  10. package/dist/cjs/components/Elgato.js +1 -0
  11. package/dist/cjs/components/Iced.d.ts +31 -0
  12. package/dist/cjs/components/Iced.d.ts.map +1 -0
  13. package/dist/cjs/components/Iced.js +1 -0
  14. package/dist/cjs/components/Linktree.js +1 -1
  15. package/dist/cjs/components/Standardjs.d.ts +31 -0
  16. package/dist/cjs/components/Standardjs.d.ts.map +1 -0
  17. package/dist/cjs/components/Standardjs.js +1 -0
  18. package/dist/cjs/index.d.ts +5 -0
  19. package/dist/cjs/index.d.ts.map +1 -1
  20. package/dist/cjs/index.js +1 -1
  21. package/dist/components/Backstage.d.ts +31 -0
  22. package/dist/components/Backstage.d.ts.map +1 -0
  23. package/dist/components/EThree.d.ts +31 -0
  24. package/dist/components/EThree.d.ts.map +1 -0
  25. package/dist/components/Elgato.d.ts +31 -0
  26. package/dist/components/Elgato.d.ts.map +1 -0
  27. package/dist/components/Iced.d.ts +31 -0
  28. package/dist/components/Iced.d.ts.map +1 -0
  29. package/dist/components/Standardjs.d.ts +31 -0
  30. package/dist/components/Standardjs.d.ts.map +1 -0
  31. package/dist/esm/components/Backstage.d.ts +31 -0
  32. package/dist/esm/components/Backstage.d.ts.map +1 -0
  33. package/dist/esm/components/Backstage.js +9 -0
  34. package/dist/esm/components/EThree.d.ts +31 -0
  35. package/dist/esm/components/EThree.d.ts.map +1 -0
  36. package/dist/esm/components/EThree.js +9 -0
  37. package/dist/esm/components/Elgato.d.ts +31 -0
  38. package/dist/esm/components/Elgato.d.ts.map +1 -0
  39. package/dist/esm/components/Elgato.js +9 -0
  40. package/dist/esm/components/Iced.d.ts +31 -0
  41. package/dist/esm/components/Iced.d.ts.map +1 -0
  42. package/dist/esm/components/Iced.js +9 -0
  43. package/dist/esm/components/Linktree.js +1 -1
  44. package/dist/esm/components/Standardjs.d.ts +31 -0
  45. package/dist/esm/components/Standardjs.d.ts.map +1 -0
  46. package/dist/esm/components/Standardjs.js +9 -0
  47. package/dist/esm/index.d.ts +5 -0
  48. package/dist/esm/index.d.ts.map +1 -1
  49. package/dist/esm/index.js +5 -0
  50. package/dist/index.d.ts +5 -0
  51. package/dist/index.d.ts.map +1 -1
  52. package/dist/index.umd.js +1 -1
  53. package/package.json +2 -2
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+
3
+ const Iced = React.forwardRef(function Iced({ color = 'currentColor', size = 24, title = "iced", ...others }, ref) {
4
+ return (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, fill: color, viewBox: "0 0 24 24", ref: ref, ...others },
5
+ React.createElement("title", null, title),
6
+ React.createElement("path", { d: "m22.605 0-6.023 6.123 1.313 1.291 6.023-6.123L22.605 0zm-5.638.047L7.932 9.232l1.312 1.29 9.035-9.184L16.967.047zM9.699 1.775c-2.337 2.377-3.477 3.528-4.617 4.68a1972.17 1972.17 0 0 0-4.621 4.686l-.379.384 2.867 9.772L12.762 24l10.511-10.5-1.3-1.3-9.02 9.007-1.908-6.83 5.559-5.65-1.311-1.291-5.559 5.65-6.845-1.79C4.506 9.655 5.449 8.703 6.39 7.75c1.14-1.153 2.282-2.305 4.62-4.684L9.7 1.776zM21.605 6.73l-1.53 1.53-6.458 6.565 1.313 1.291 6.45-6.558 1.528-1.528-1.303-1.3zM2.46 13.088l6.812 1.781 1.895 6.783-6.738-1.857-1.969-6.707z" })));
7
+ });
8
+
9
+ export { Iced as default };
@@ -3,7 +3,7 @@ import * as React from 'react';
3
3
  const Linktree = React.forwardRef(function Linktree({ color = 'currentColor', size = 24, title = "linktree", ...others }, ref) {
4
4
  return (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, fill: color, viewBox: "0 0 24 24", ref: ref, ...others },
5
5
  React.createElement("title", null, title),
6
- React.createElement("path", { d: "M7.953 15.066c-.08.163-.08.324-.08.486.08.517.528.897 1.052.89h1.294v4.776c0 .486-.404.89-.89.89H6.577a.898.898 0 0 1-.889-.891v-4.774H.992c-.728 0-1.214-.729-.89-1.377l6.96-12.627a1.065 1.065 0 0 1 1.863 0l2.913 5.585-3.885 7.042zm15.945 0l-6.96-12.627a1.065 1.065 0 0 0-1.862 0l-2.995 5.586 3.885 7.04c.081.164.081.326.081.487-.08.517-.529.897-1.052.89h-1.296v4.776c.005.49.4.887.89.89h2.914a.9.9 0 0 0 .892-.89v-4.775h4.612c.73 0 1.214-.729.89-1.377Z" })));
6
+ React.createElement("path", { d: "m13.73635 5.85251 4.00467-4.11665 2.3248 2.3808-4.20064 4.00466h5.9085v3.30473h-5.9365l4.22865 4.10766-2.3248 2.3338L12.0005 12.099l-5.74052 5.76852-2.3248-2.3248 4.22864-4.10766h-5.9375V8.12132h5.9085L3.93417 4.11666l2.3248-2.3808 4.00468 4.11665V0h3.4727zm-3.4727 10.30614h3.4727V24h-3.4727z" })));
7
7
  });
8
8
 
9
9
  export { Linktree as default };
@@ -0,0 +1,31 @@
1
+ import * as React from 'react';
2
+ export declare type StandardjsProps = React.ComponentPropsWithoutRef<'svg'> & {
3
+ /**
4
+ * Hex color or color name
5
+ */
6
+ title?: string;
7
+ /**
8
+ * The size of the Icon.
9
+ */
10
+ color?: string;
11
+ /**
12
+ * The title provides an accessible short text description to the SVG
13
+ */
14
+ size?: string | number;
15
+ };
16
+ declare const Standardjs: React.ForwardRefExoticComponent<Pick<React.SVGProps<SVGSVGElement>, "string" | "style" | "clipPath" | "filter" | "mask" | "path" | "className" | "color" | "height" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "target" | "type" | "width" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "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" | "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" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "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" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "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" | "key"> & {
17
+ /**
18
+ * Hex color or color name
19
+ */
20
+ title?: string | undefined;
21
+ /**
22
+ * The size of the Icon.
23
+ */
24
+ color?: string | undefined;
25
+ /**
26
+ * The title provides an accessible short text description to the SVG
27
+ */
28
+ size?: string | number | undefined;
29
+ } & React.RefAttributes<SVGSVGElement>>;
30
+ export default Standardjs;
31
+ //# sourceMappingURL=Standardjs.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Standardjs.d.ts","sourceRoot":"","sources":["../../../src/components/Standardjs.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,oBAAY,eAAe,GAAG,KAAK,CAAC,wBAAwB,CAAC,KAAK,CAAC,GAAG;IACpE;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB,CAAC;AAEF,QAAA,MAAM,UAAU;IAdd;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;uCAYH,CAAC;AAEH,eAAe,UAAU,CAAC"}
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+
3
+ const Standardjs = React.forwardRef(function Standardjs({ color = 'currentColor', size = 24, title = "standardjs", ...others }, ref) {
4
+ return (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, fill: color, viewBox: "0 0 24 24", ref: ref, ...others },
5
+ React.createElement("title", null, title),
6
+ React.createElement("path", { d: "M11.966 0 1.608 5.965v12.07L12.035 24l10.358-5.965V5.965Zm1.421 7.02h.651v3.483h-.651l.015-.3c-.116.218-.333.343-.647.343-.501 0-.93-.443-.93-1.075 0-.632.424-1.066.92-1.066.329 0 .512.13.642.333zm6.83 0h.65v3.483h-.65l.014-.3c-.116.218-.333.343-.646.343-.502 0-.931-.443-.931-1.075 0-.632.424-1.066.921-1.066.328 0 .511.13.641.333zm-14.928.358h.646v1.07h.526v.54h-.526v.763c0 .207.068.25.17.25.105 0 .183-.058.226-.086l.246.453a.865.865 0 0 1-.574.188c-.415 0-.714-.207-.714-.825v-.743h-.304v-.54h.304zM3.895 8.405c.338 0 .58.11.748.284l-.347.372a.634.634 0 0 0-.396-.154c-.15 0-.222.038-.222.12 0 .116.13.13.41.193.3.068.676.207.676.641 0 .377-.198.685-.845.685-.477 0-.757-.178-.935-.39l.38-.338a.74.74 0 0 0 .512.217c.212 0 .28-.039.28-.125 0-.111-.13-.111-.463-.198-.28-.072-.593-.227-.593-.656 0-.463.356-.651.795-.651zm4.018 0c.526 0 .926.284.926.93v1.168h-.646l.014-.285c-.154.237-.333.328-.608.328-.376 0-.723-.169-.723-.646 0-.439.333-.617.84-.617h.477c-.01-.237-.126-.343-.343-.343a.643.643 0 0 0-.468.188l-.361-.385c.193-.189.41-.338.892-.338zm2.71 0c.449 0 .772.328.772.911v1.187h-.651V9.36c0-.232-.11-.362-.342-.362-.26 0-.415.145-.415.405v1.1h-.651V8.448h.65l-.014.338a.703.703 0 0 1 .651-.381zm4.857 0c.526 0 .926.284.926.93v1.168h-.646l.014-.285c-.154.237-.332.328-.607.328-.376 0-.724-.169-.724-.646 0-.439.333-.617.84-.617h.477c-.01-.237-.125-.343-.343-.343a.643.643 0 0 0-.467.188l-.362-.385c.193-.189.41-.338.892-.338zm2.667 0c.135 0 .237.038.319.082l-.208.593a.567.567 0 0 0-.25-.063c-.295 0-.454.135-.454.574v.912h-.651V8.448h.651l-.01.372c.15-.338.391-.415.603-.415zm-5.204.574c-.275 0-.448.188-.448.492 0 .323.173.506.448.506.28 0 .463-.183.463-.506 0-.304-.183-.492-.463-.492zm6.83 0c-.275 0-.449.188-.449.492 0 .323.174.506.449.506.28 0 .463-.183.463-.506 0-.304-.184-.492-.463-.492zm-12.024.69c-.164 0-.236.072-.236.188s.096.183.28.183c.265 0 .4-.116.4-.29v-.082zm7.567 0c-.164 0-.236.072-.236.188s.096.183.28.183c.265 0 .4-.116.4-.29v-.082zm-1.261 2.478c.766 0 1.317.267 1.713.965l-.938.603c-.207-.37-.431-.517-.775-.517-.354 0-.578.224-.578.517 0 .361.224.508.741.732l.302.129c1.024.439 1.602.887 1.602 1.895 0 1.085-.853 1.679-1.999 1.679-1.12 0-1.843-.534-2.196-1.232l.982-.568c.258.422.594.732 1.189.732.5 0 .818-.25.818-.594 0-.414-.328-.56-.879-.801l-.301-.13c-.87-.37-1.447-.835-1.447-1.817 0-.904.689-1.593 1.766-1.593zm-3.988.069h1.206v4.117c0 1.249-.732 1.817-1.8 1.817-.965 0-1.525-.5-1.809-1.102l.982-.595c.19.336.362.62.775.62.396 0 .646-.155.646-.757z" })));
7
+ });
8
+
9
+ export { Standardjs as default };
@@ -239,6 +239,7 @@ export { default as Babel } from './components/Babel';
239
239
  export { default as Backblaze } from './components/Backblaze';
240
240
  export { default as Backbonedotjs } from './components/Backbonedotjs';
241
241
  export { default as Backendless } from './components/Backendless';
242
+ export { default as Backstage } from './components/Backstage';
242
243
  export { default as Badgr } from './components/Badgr';
243
244
  export { default as Badoo } from './components/Badoo';
244
245
  export { default as Baidu } from './components/Baidu';
@@ -603,6 +604,7 @@ export { default as Dwm } from './components/Dwm';
603
604
  export { default as DynamicsThreeHundredSixtyFive } from './components/DynamicsThreeHundredSixtyFive';
604
605
  export { default as Dynatrace } from './components/Dynatrace';
605
606
  export { default as Edotleclerc } from './components/Edotleclerc';
607
+ export { default as EThree } from './components/EThree';
606
608
  export { default as Ea } from './components/Ea';
607
609
  export { default as Eagle } from './components/Eagle';
608
610
  export { default as Easyjet } from './components/Easyjet';
@@ -630,6 +632,7 @@ export { default as Element } from './components/Element';
630
632
  export { default as Elementary } from './components/Elementary';
631
633
  export { default as Elementor } from './components/Elementor';
632
634
  export { default as Eleventy } from './components/Eleventy';
635
+ export { default as Elgato } from './components/Elgato';
633
636
  export { default as Elixir } from './components/Elixir';
634
637
  export { default as Ello } from './components/Ello';
635
638
  export { default as Elm } from './components/Elm';
@@ -972,6 +975,7 @@ export { default as Ibeacon } from './components/Ibeacon';
972
975
  export { default as Ibm } from './components/Ibm';
973
976
  export { default as Ibmcloud } from './components/Ibmcloud';
974
977
  export { default as Ibmwatson } from './components/Ibmwatson';
978
+ export { default as Iced } from './components/Iced';
975
979
  export { default as Iceland } from './components/Iceland';
976
980
  export { default as Icinga } from './components/Icinga';
977
981
  export { default as Icloud } from './components/Icloud';
@@ -1966,6 +1970,7 @@ export { default as Stackpath } from './components/Stackpath';
1966
1970
  export { default as Stackshare } from './components/Stackshare';
1967
1971
  export { default as Stadia } from './components/Stadia';
1968
1972
  export { default as Staffbase } from './components/Staffbase';
1973
+ export { default as Standardjs } from './components/Standardjs';
1969
1974
  export { default as Startrek } from './components/Startrek';
1970
1975
  export { default as Starbucks } from './components/Starbucks';
1971
1976
  export { default as Stardock } from './components/Stardock';