@codecademy/gamut-icons 9.53.1-alpha.efe565.0 → 9.54.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/dist/icons/regular/AdminIcon.d.ts +3 -0
- package/dist/icons/regular/AdminIcon.js +60 -0
- package/dist/icons/regular/HierarchyIcon.d.ts +3 -0
- package/dist/icons/regular/HierarchyIcon.js +55 -0
- package/dist/icons/regular/index.d.ts +2 -0
- package/dist/icons/regular/index.js +2 -0
- package/dist/props.d.ts +1 -1
- package/dist/svg/regular/admin-icon.svg +13 -0
- package/dist/svg/regular/hierarchy-icon.svg +12 -0
- package/package.json +4 -4
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Svg } from '../../props';
|
|
3
|
+
import { useIconId } from '../../useIconId';
|
|
4
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
5
|
+
export const AdminIcon = /*#__PURE__*/React.forwardRef(({
|
|
6
|
+
title,
|
|
7
|
+
titleId,
|
|
8
|
+
size = 16,
|
|
9
|
+
height = size,
|
|
10
|
+
width = size,
|
|
11
|
+
...props
|
|
12
|
+
}, svgRef) => {
|
|
13
|
+
const maskId = useIconId('AdminIcon');
|
|
14
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
15
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
fill: "#fff",
|
|
18
|
+
role: "img",
|
|
19
|
+
"aria-hidden": "true",
|
|
20
|
+
"pointer-events": "none",
|
|
21
|
+
width: width,
|
|
22
|
+
height: height,
|
|
23
|
+
ref: svgRef,
|
|
24
|
+
"aria-labelledby": titleId,
|
|
25
|
+
...props,
|
|
26
|
+
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
27
|
+
id: titleId,
|
|
28
|
+
children: title
|
|
29
|
+
}) : null, /*#__PURE__*/_jsxs("mask", {
|
|
30
|
+
id: `${maskId}`,
|
|
31
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
32
|
+
fill: "none",
|
|
33
|
+
stroke: "#fff",
|
|
34
|
+
strokeLinecap: "round",
|
|
35
|
+
strokeLinejoin: "round",
|
|
36
|
+
d: "M17.44 15.76a2.596 2.596 0 100-5.191 2.596 2.596 0 000 5.19zm-4.05 5.158a4.05 4.05 0 018.1 0h-8.1zM5.328 9.45h8.1m-8.1 3.375h6.075M5.328 16.2h6.075",
|
|
37
|
+
strokeWidth: 1.5
|
|
38
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
39
|
+
fill: "none",
|
|
40
|
+
stroke: "#fff",
|
|
41
|
+
strokeLinecap: "round",
|
|
42
|
+
strokeLinejoin: "round",
|
|
43
|
+
d: "M10.278 20.925h-7.65a1.35 1.35 0 01-1.35-1.35V5.4a1.35 1.35 0 011.35-1.35h3.375a3.375 3.375 0 016.75 0h3.375a1.35 1.35 0 011.35 1.35v2.475",
|
|
44
|
+
strokeWidth: 1.5
|
|
45
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
46
|
+
fill: "none",
|
|
47
|
+
stroke: "#fff",
|
|
48
|
+
d: "M9.378 4.05a.338.338 0 010-.675m0 .675a.338.338 0 000-.675",
|
|
49
|
+
strokeWidth: 1.5
|
|
50
|
+
})]
|
|
51
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
52
|
+
mask: `url(#${maskId})`,
|
|
53
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
54
|
+
width: `100%`,
|
|
55
|
+
height: `100%`,
|
|
56
|
+
fill: `currentColor`
|
|
57
|
+
})
|
|
58
|
+
})]
|
|
59
|
+
});
|
|
60
|
+
});
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Svg } from '../../props';
|
|
3
|
+
import { useIconId } from '../../useIconId';
|
|
4
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
5
|
+
export const HierarchyIcon = /*#__PURE__*/React.forwardRef(({
|
|
6
|
+
title,
|
|
7
|
+
titleId,
|
|
8
|
+
size = 16,
|
|
9
|
+
height = size,
|
|
10
|
+
width = size,
|
|
11
|
+
...props
|
|
12
|
+
}, svgRef) => {
|
|
13
|
+
const maskId = useIconId('HierarchyIcon');
|
|
14
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
15
|
+
viewBox: "0 0 24 24",
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
fill: "#fff",
|
|
18
|
+
role: "img",
|
|
19
|
+
"aria-hidden": "true",
|
|
20
|
+
"pointer-events": "none",
|
|
21
|
+
width: width,
|
|
22
|
+
height: height,
|
|
23
|
+
ref: svgRef,
|
|
24
|
+
"aria-labelledby": titleId,
|
|
25
|
+
...props,
|
|
26
|
+
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
27
|
+
id: titleId,
|
|
28
|
+
children: title
|
|
29
|
+
}) : null, /*#__PURE__*/_jsxs("mask", {
|
|
30
|
+
id: `${maskId}`,
|
|
31
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
32
|
+
d: "M3.749 18.75v-4.023a.477.477 0 01.477-.477h15.546a.477.477 0 01.477.477v4.023m-8.25-7.5v7.5",
|
|
33
|
+
fill: "none",
|
|
34
|
+
stroke: "#fff",
|
|
35
|
+
strokeLinecap: "round",
|
|
36
|
+
strokeLinejoin: "round",
|
|
37
|
+
strokeWidth: 1.5
|
|
38
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
39
|
+
d: "M1.499 21a2.25 2.25 0 104.5 0 2.25 2.25 0 10-4.5 0zm8.25 0a2.25 2.25 0 104.5 0 2.25 2.25 0 10-4.5 0zm8.25 0a2.25 2.25 0 104.5 0 2.25 2.25 0 10-4.5 0zm-9-17.25a3 3 0 106 0 3 3 0 10-6 0zm7.501 7.5a4.966 4.966 0 00-4.577-3.75 4.966 4.966 0 00-4.577 3.75",
|
|
40
|
+
fill: "none",
|
|
41
|
+
stroke: "#fff",
|
|
42
|
+
strokeLinecap: "round",
|
|
43
|
+
strokeLinejoin: "round",
|
|
44
|
+
strokeWidth: 1.5
|
|
45
|
+
})]
|
|
46
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
47
|
+
mask: `url(#${maskId})`,
|
|
48
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
49
|
+
width: `100%`,
|
|
50
|
+
height: `100%`,
|
|
51
|
+
fill: `currentColor`
|
|
52
|
+
})
|
|
53
|
+
})]
|
|
54
|
+
});
|
|
55
|
+
});
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './AccountingCoinsIcon';
|
|
2
2
|
export * from './AddBoldIcon';
|
|
3
3
|
export * from './AddIcon';
|
|
4
|
+
export * from './AdminIcon';
|
|
4
5
|
export * from './AiChatSparkFilledIcon';
|
|
5
6
|
export * from './AiChatSparkIcon';
|
|
6
7
|
export * from './AiEditSparkIcon';
|
|
@@ -136,6 +137,7 @@ export * from './GraphStatsAscendIcon';
|
|
|
136
137
|
export * from './GrowthIcon';
|
|
137
138
|
export * from './HalloweenBroomIcon';
|
|
138
139
|
export * from './HammerWrenchIcon';
|
|
140
|
+
export * from './HierarchyIcon';
|
|
139
141
|
export * from './HouseEntranceIcon';
|
|
140
142
|
export * from './HtmlCssIcon';
|
|
141
143
|
export * from './HyperlinkIcon';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './AccountingCoinsIcon';
|
|
2
2
|
export * from './AddBoldIcon';
|
|
3
3
|
export * from './AddIcon';
|
|
4
|
+
export * from './AdminIcon';
|
|
4
5
|
export * from './AiChatSparkFilledIcon';
|
|
5
6
|
export * from './AiChatSparkIcon';
|
|
6
7
|
export * from './AiEditSparkIcon';
|
|
@@ -136,6 +137,7 @@ export * from './GraphStatsAscendIcon';
|
|
|
136
137
|
export * from './GrowthIcon';
|
|
137
138
|
export * from './HalloweenBroomIcon';
|
|
138
139
|
export * from './HammerWrenchIcon';
|
|
140
|
+
export * from './HierarchyIcon';
|
|
139
141
|
export * from './HouseEntranceIcon';
|
|
140
142
|
export * from './HtmlCssIcon';
|
|
141
143
|
export * from './HyperlinkIcon';
|
package/dist/props.d.ts
CHANGED
|
@@ -710,5 +710,5 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
710
710
|
}>;
|
|
711
711
|
} & {
|
|
712
712
|
theme?: import("@emotion/react").Theme | undefined;
|
|
713
|
-
}, Pick<import("react").SVGProps<SVGSVGElement>, "string" | "scale" | "filter" | "fill" | "values" | "spacing" | "name" | "
|
|
713
|
+
}, Pick<import("react").SVGProps<SVGSVGElement>, "string" | "scale" | "filter" | "fill" | "values" | "spacing" | "name" | "clipPath" | "cursor" | "direction" | "fontSizeAdjust" | "fontStretch" | "fontVariant" | "imageRendering" | "paintOrder" | "pointerEvents" | "rotate" | "textRendering" | "transform" | "unicodeBidi" | "visibility" | "wordSpacing" | "writingMode" | "mask" | "offset" | "min" | "max" | "end" | "clip" | "suppressHydrationWarning" | "className" | "id" | "lang" | "media" | "method" | "style" | "target" | "type" | "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" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "fillOpacity" | "fillRule" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mathematical" | "numOctaves" | "operator" | "orient" | "orientation" | "origin" | "overlinePosition" | "overlineThickness" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "shapeRendering" | "slope" | "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" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "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-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "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-rowindextext" | "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" | "onResize" | "onResizeCapture" | "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" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "ref" | "key">, {}>;
|
|
714
714
|
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="Technology-Privacy-Consent-Profile-Information--Streamline-Ultimate" height="24" width="24">
|
|
2
|
+
<desc>
|
|
3
|
+
Technology Privacy Consent Profile Information Streamline Icon: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" d="M17.440559999999998 15.759899999999998c1.43352 0 2.5955999999999997 -1.1620799999999998 2.5955999999999997 -2.5955999999999997 0 -1.4334299999999998 -1.1620799999999998 -2.5955999999999997 -2.5955999999999997 -2.5955999999999997s-2.5955999999999997 1.1621699999999997 -2.5955999999999997 2.5955999999999997c0 1.43352 1.1620799999999998 2.5955999999999997 2.5955999999999997 2.5955999999999997Z" stroke-width="1.5"></path>
|
|
6
|
+
<path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" d="M13.390559999999997 20.91771c0 -1.07406 0.42668999999999996 -2.1042 1.1862 -2.8637099999999998 0.7595999999999999 -0.7595999999999999 1.7896499999999997 -1.1862899999999998 2.8637999999999995 -1.1862899999999998s2.1042899999999998 0.42668999999999996 2.8637999999999995 1.1862899999999998c0.7595099999999999 0.7595099999999999 1.1862 1.7896499999999997 1.1862 2.8637099999999998h-8.1Z" stroke-width="1.5"></path>
|
|
7
|
+
<path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" d="M5.3283689999999995 9.45h8.099991" stroke-width="1.5"></path>
|
|
8
|
+
<path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" d="M5.3283689999999995 12.825h6.074991" stroke-width="1.5"></path>
|
|
9
|
+
<path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" d="M5.3283689999999995 16.2h6.074991" stroke-width="1.5"></path>
|
|
10
|
+
<path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" d="M10.27836 20.924999999999997H2.6283779999999997c-0.358047 0 -0.7014239999999999 -0.1422 -0.9545939999999998 -0.39537 -0.253179 -0.25316999999999995 -0.395406 -0.59661 -0.395406 -0.9546299999999999V5.3999999999999995c0 -0.35803799999999997 0.142227 -0.7014239999999999 0.395406 -0.9545939999999998 0.25316999999999995 -0.25316999999999995 0.5965469999999999 -0.395406 0.9545939999999998 -0.395406h3.3749999999999996c0 -0.8951039999999999 0.355581 -1.7535509999999999 0.9885149999999998 -2.386485S8.483274 0.6749999999999999 9.378359999999999 0.6749999999999999c0.8951399999999999 0 1.7535599999999998 0.355581 2.3865299999999996 0.9885149999999998 0.63288 0.6329339999999999 0.98847 1.4913809999999998 0.98847 2.386485h3.3749999999999996c0.35801999999999995 0 0.7014599999999999 0.142236 0.9546299999999999 0.395406s0.39537 0.596556 0.39537 0.9545939999999998v2.4749999999999996" stroke-width="1.5"></path>
|
|
11
|
+
<path fill="none" stroke="#000000" d="M9.378359999999999 4.05c-0.18639 0 -0.33749999999999997 -0.15110099999999999 -0.33749999999999997 -0.33749999999999997s0.15110999999999997 -0.33749999999999997 0.33749999999999997 -0.33749999999999997" stroke-width="1.5"></path>
|
|
12
|
+
<path fill="none" stroke="#000000" d="M9.378359999999999 4.05c0.18639 0 0.33749999999999997 -0.15110099999999999 0.33749999999999997 -0.33749999999999997s-0.15110999999999997 -0.33749999999999997 -0.33749999999999997 -0.33749999999999997" stroke-width="1.5"></path>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" id="Human-Resources-Hierarchy--Streamline-Ultimate" height="24" width="24">
|
|
2
|
+
<desc>
|
|
3
|
+
Human Resources Hierarchy Streamline Icon: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M3.749 18.75v-4.023a0.477 0.477 0 0 1 0.477 -0.477h15.546a0.477 0.477 0 0 1 0.477 0.477v4.023" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
6
|
+
<path d="m11.999 11.25 0 7.5" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
7
|
+
<path d="M1.499 21a2.25 2.25 0 1 0 4.5 0 2.25 2.25 0 1 0 -4.5 0Z" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
8
|
+
<path d="M9.749 21a2.25 2.25 0 1 0 4.5 0 2.25 2.25 0 1 0 -4.5 0Z" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
9
|
+
<path d="M17.999 21a2.25 2.25 0 1 0 4.5 0 2.25 2.25 0 1 0 -4.5 0Z" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
10
|
+
<path d="M8.999 3.75a3 3 0 1 0 6 0 3 3 0 1 0 -6 0Z" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
11
|
+
<path d="M16.5 11.25a4.966 4.966 0 0 0 -4.577 -3.75 4.966 4.966 0 0 0 -4.577 3.75" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
12
|
+
</svg>
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-icons",
|
|
3
3
|
"description": "Icon library for codecademy.com",
|
|
4
|
-
"version": "9.
|
|
4
|
+
"version": "9.54.0",
|
|
5
5
|
"author": "Codecademy <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/gamut-styles": "17.11.
|
|
8
|
-
"@codecademy/variance": "0.25.
|
|
7
|
+
"@codecademy/gamut-styles": "17.11.0",
|
|
8
|
+
"@codecademy/variance": "0.25.0"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist"
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"types": "dist/index.d.ts",
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "6ee4dda60b94172983a045eab8182b92c14e5f15"
|
|
33
33
|
}
|