@codecademy/gamut-icons 9.52.1-alpha.a82fb3.0 → 9.52.2-alpha.09238f.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/index.d.ts +0 -1
- package/dist/icons/regular/index.js +0 -1
- package/dist/props.d.ts +61 -1
- package/package.json +3 -3
- package/dist/icons/regular/ArrowUpHeavyIcon.d.ts +0 -3
- package/dist/icons/regular/ArrowUpHeavyIcon.js +0 -46
- package/dist/svg/regular/arrow-up-heavy-icon.svg +0 -8
|
@@ -23,7 +23,6 @@ export * from './ArrowLeftIcon';
|
|
|
23
23
|
export * from './ArrowRightIcon';
|
|
24
24
|
export * from './ArrowThickCircleRightIcon';
|
|
25
25
|
export * from './ArrowThickCircleUpIcon';
|
|
26
|
-
export * from './ArrowUpHeavyIcon';
|
|
27
26
|
export * from './ArrowUpIcon';
|
|
28
27
|
export * from './ArticleIcon';
|
|
29
28
|
export * from './ArtificialIntelligenceIcon';
|
|
@@ -23,7 +23,6 @@ export * from './ArrowLeftIcon';
|
|
|
23
23
|
export * from './ArrowRightIcon';
|
|
24
24
|
export * from './ArrowThickCircleRightIcon';
|
|
25
25
|
export * from './ArrowThickCircleUpIcon';
|
|
26
|
-
export * from './ArrowUpHeavyIcon';
|
|
27
26
|
export * from './ArrowUpIcon';
|
|
28
27
|
export * from './ArticleIcon';
|
|
29
28
|
export * from './ArtificialIntelligenceIcon';
|
package/dist/props.d.ts
CHANGED
|
@@ -102,6 +102,18 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
102
102
|
readonly property: "maxWidth";
|
|
103
103
|
readonly transform: (value: string | number) => string | 0;
|
|
104
104
|
};
|
|
105
|
+
readonly inlineSize: {
|
|
106
|
+
readonly property: "inlineSize";
|
|
107
|
+
readonly transform: (value: string | number) => string | 0;
|
|
108
|
+
};
|
|
109
|
+
readonly minInlineSize: {
|
|
110
|
+
readonly property: "minInlineSize";
|
|
111
|
+
readonly transform: (value: string | number) => string | 0;
|
|
112
|
+
};
|
|
113
|
+
readonly maxInlineSize: {
|
|
114
|
+
readonly property: "maxInlineSize";
|
|
115
|
+
readonly transform: (value: string | number) => string | 0;
|
|
116
|
+
};
|
|
105
117
|
readonly height: {
|
|
106
118
|
readonly property: "height";
|
|
107
119
|
readonly transform: (value: string | number) => string | 0;
|
|
@@ -114,9 +126,27 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
114
126
|
readonly property: "maxHeight";
|
|
115
127
|
readonly transform: (value: string | number) => string | 0;
|
|
116
128
|
};
|
|
129
|
+
readonly blockSize: {
|
|
130
|
+
readonly property: "blockSize";
|
|
131
|
+
readonly transform: (value: string | number) => string | 0;
|
|
132
|
+
};
|
|
133
|
+
readonly minBlockSize: {
|
|
134
|
+
readonly property: "minBlockSize";
|
|
135
|
+
readonly transform: (value: string | number) => string | 0;
|
|
136
|
+
};
|
|
137
|
+
readonly maxBlockSize: {
|
|
138
|
+
readonly property: "maxBlockSize";
|
|
139
|
+
readonly transform: (value: string | number) => string | 0;
|
|
140
|
+
};
|
|
117
141
|
readonly verticalAlign: {
|
|
118
142
|
readonly property: "verticalAlign";
|
|
119
143
|
};
|
|
144
|
+
readonly writingMode: {
|
|
145
|
+
readonly property: "writingMode";
|
|
146
|
+
};
|
|
147
|
+
readonly direction: {
|
|
148
|
+
readonly property: "direction";
|
|
149
|
+
};
|
|
120
150
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
121
151
|
readonly color: {
|
|
122
152
|
readonly property: "color";
|
|
@@ -445,6 +475,18 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
445
475
|
readonly property: "maxWidth";
|
|
446
476
|
readonly transform: (value: string | number) => string | 0;
|
|
447
477
|
}>;
|
|
478
|
+
inlineSize?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
479
|
+
readonly property: "inlineSize";
|
|
480
|
+
readonly transform: (value: string | number) => string | 0;
|
|
481
|
+
}>;
|
|
482
|
+
minInlineSize?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
483
|
+
readonly property: "minInlineSize";
|
|
484
|
+
readonly transform: (value: string | number) => string | 0;
|
|
485
|
+
}>;
|
|
486
|
+
maxInlineSize?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
487
|
+
readonly property: "maxInlineSize";
|
|
488
|
+
readonly transform: (value: string | number) => string | 0;
|
|
489
|
+
}>;
|
|
448
490
|
height?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
449
491
|
readonly property: "height";
|
|
450
492
|
readonly transform: (value: string | number) => string | 0;
|
|
@@ -457,9 +499,27 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
457
499
|
readonly property: "maxHeight";
|
|
458
500
|
readonly transform: (value: string | number) => string | 0;
|
|
459
501
|
}>;
|
|
502
|
+
blockSize?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
503
|
+
readonly property: "blockSize";
|
|
504
|
+
readonly transform: (value: string | number) => string | 0;
|
|
505
|
+
}>;
|
|
506
|
+
minBlockSize?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
507
|
+
readonly property: "minBlockSize";
|
|
508
|
+
readonly transform: (value: string | number) => string | 0;
|
|
509
|
+
}>;
|
|
510
|
+
maxBlockSize?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
511
|
+
readonly property: "maxBlockSize";
|
|
512
|
+
readonly transform: (value: string | number) => string | 0;
|
|
513
|
+
}>;
|
|
460
514
|
verticalAlign?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
461
515
|
readonly property: "verticalAlign";
|
|
462
516
|
}>;
|
|
517
|
+
writingMode?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
518
|
+
readonly property: "writingMode";
|
|
519
|
+
}>;
|
|
520
|
+
direction?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
521
|
+
readonly property: "direction";
|
|
522
|
+
}>;
|
|
463
523
|
color?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
464
524
|
readonly property: "color";
|
|
465
525
|
readonly scale: "colors";
|
|
@@ -710,5 +770,5 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
710
770
|
}>;
|
|
711
771
|
} & {
|
|
712
772
|
theme?: import("@emotion/react").Theme | undefined;
|
|
713
|
-
}, Pick<import("react").SVGProps<SVGSVGElement>, "string" | "scale" | "filter" | "fill" | "values" | "spacing" | "name" | "clipPath" | "cursor" | "
|
|
773
|
+
}, Pick<import("react").SVGProps<SVGSVGElement>, "string" | "scale" | "filter" | "fill" | "values" | "spacing" | "name" | "clipPath" | "cursor" | "fontSizeAdjust" | "fontStretch" | "fontVariant" | "imageRendering" | "paintOrder" | "pointerEvents" | "rotate" | "textRendering" | "transform" | "unicodeBidi" | "visibility" | "wordSpacing" | "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
774
|
export {};
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-icons",
|
|
3
3
|
"description": "Icon library for codecademy.com",
|
|
4
|
-
"version": "9.52.
|
|
4
|
+
"version": "9.52.2-alpha.09238f.0",
|
|
5
5
|
"author": "Codecademy <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/gamut-styles": "17.
|
|
7
|
+
"@codecademy/gamut-styles": "17.11.1-alpha.09238f.0",
|
|
8
8
|
"@codecademy/variance": "0.25.0"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"types": "dist/index.d.ts",
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "ba2aa7c0850a87c8c5ba66e2ea4c8a932b0db6ea"
|
|
33
33
|
}
|
|
@@ -1,46 +0,0 @@
|
|
|
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 ArrowUpHeavyIcon = /*#__PURE__*/React.forwardRef(({
|
|
6
|
-
title,
|
|
7
|
-
titleId,
|
|
8
|
-
size = 16,
|
|
9
|
-
height = size,
|
|
10
|
-
width = size,
|
|
11
|
-
...props
|
|
12
|
-
}, svgRef) => {
|
|
13
|
-
const maskId = useIconId('ArrowUpHeavyIcon');
|
|
14
|
-
return /*#__PURE__*/_jsxs(Svg, {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
fill: "#fff",
|
|
17
|
-
viewBox: "0 0 24 24",
|
|
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__*/_jsx("mask", {
|
|
30
|
-
id: `${maskId}`,
|
|
31
|
-
children: /*#__PURE__*/_jsx("path", {
|
|
32
|
-
fill: "#fff",
|
|
33
|
-
fillRule: "evenodd",
|
|
34
|
-
d: "M9.423 21.429a2.571 2.571 0 005.143 0V8.774l4.187 4.187a2.572 2.572 0 003.637-3.636L13.818.753a2.571 2.571 0 00-3.636 0L1.61 9.325a2.571 2.571 0 103.637 3.636l4.176-4.176v12.644z",
|
|
35
|
-
clipRule: "evenodd"
|
|
36
|
-
})
|
|
37
|
-
}), /*#__PURE__*/_jsx("g", {
|
|
38
|
-
mask: `url(#${maskId})`,
|
|
39
|
-
children: /*#__PURE__*/_jsx("rect", {
|
|
40
|
-
width: `100%`,
|
|
41
|
-
height: `100%`,
|
|
42
|
-
fill: `currentColor`
|
|
43
|
-
})
|
|
44
|
-
})]
|
|
45
|
-
});
|
|
46
|
-
});
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="Line-Arrow-Up-Large-1--Streamline-Core" height="24" width="24">
|
|
2
|
-
<desc>
|
|
3
|
-
Line Arrow Up Large 1 Streamline Icon: https://streamlinehq.com
|
|
4
|
-
</desc>
|
|
5
|
-
<g id="line-arrow-up-large-1--arrow-up-keyboard-large-head">
|
|
6
|
-
<path id="Union" fill="#000000" fill-rule="evenodd" d="M9.423137142857142 21.428571428571427c0 1.4201142857142857 1.1512628571428571 2.571428571428571 2.571428571428571 2.571428571428571 1.4201485714285715 0 2.571428571428571 -1.1513142857142855 2.571428571428571 -2.571428571428571l0 -12.654599999999999 4.187091428571429 4.1871599999999995c1.0042285714285712 1.0042114285714285 2.632457142857143 1.0042114285714285 3.636685714285714 0 1.0040571428571428 -1.0042114285714285 1.0040571428571428 -2.6323371428571427 0 -3.636548571428571l-8.571497142857142 -8.571428571428571c-1.0042114285714285 -1.0042062857142855 -2.6323371428571427 -1.0042062857142855 -3.636548571428571 0l-8.571428571428571 8.571428571428571c-1.0042062857142855 1.0042114285714285 -1.0042062857142855 2.6323371428571427 0 3.636548571428571 1.0042114285714285 1.0042114285714285 2.6323371428571427 1.0042114285714285 3.636548571428571 0l4.176291428571429 -4.176291428571429 0 12.643731428571428Z" clip-rule="evenodd" stroke-width="1.7143"></path>
|
|
7
|
-
</g>
|
|
8
|
-
</svg>
|