@codecademy/gamut-icons 9.54.2 → 9.54.3-alpha.409841.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 (2) hide show
  1. package/dist/props.d.ts +187 -37
  2. package/package.json +4 -4
package/dist/props.d.ts CHANGED
@@ -91,32 +91,59 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
91
91
  readonly transform: (value: string | number) => string | 0;
92
92
  };
93
93
  readonly width: {
94
- readonly property: "width";
94
+ readonly property: {
95
+ readonly physical: "width";
96
+ readonly logical: "inlineSize";
97
+ };
98
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
95
99
  readonly transform: (value: string | number) => string | 0;
96
100
  };
97
101
  readonly minWidth: {
98
- readonly property: "minWidth";
102
+ readonly property: {
103
+ readonly physical: "minWidth";
104
+ readonly logical: "minInlineSize";
105
+ };
106
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
99
107
  readonly transform: (value: string | number) => string | 0;
100
108
  };
101
109
  readonly maxWidth: {
102
- readonly property: "maxWidth";
110
+ readonly property: {
111
+ readonly physical: "maxWidth";
112
+ readonly logical: "maxInlineSize";
113
+ };
114
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
103
115
  readonly transform: (value: string | number) => string | 0;
104
116
  };
105
117
  readonly height: {
106
- readonly property: "height";
118
+ readonly property: {
119
+ readonly physical: "height";
120
+ readonly logical: "blockSize";
121
+ };
122
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
107
123
  readonly transform: (value: string | number) => string | 0;
108
124
  };
109
125
  readonly minHeight: {
110
- readonly property: "minHeight";
126
+ readonly property: {
127
+ readonly physical: "minHeight";
128
+ readonly logical: "minBlockSize";
129
+ };
130
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
111
131
  readonly transform: (value: string | number) => string | 0;
112
132
  };
113
133
  readonly maxHeight: {
114
- readonly property: "maxHeight";
134
+ readonly property: {
135
+ readonly physical: "maxHeight";
136
+ readonly logical: "maxBlockSize";
137
+ };
138
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
115
139
  readonly transform: (value: string | number) => string | 0;
116
140
  };
117
141
  readonly verticalAlign: {
118
142
  readonly property: "verticalAlign";
119
143
  };
144
+ readonly direction: {
145
+ readonly property: "direction";
146
+ };
120
147
  }>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
121
148
  readonly color: {
122
149
  readonly property: "color";
@@ -167,29 +194,53 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
167
194
  };
168
195
  readonly px: {
169
196
  readonly property: "padding";
170
- readonly properties: readonly ["paddingLeft", "paddingRight"];
197
+ readonly properties: {
198
+ readonly physical: readonly ["paddingLeft", "paddingRight"];
199
+ readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
200
+ };
171
201
  readonly scale: "spacing";
202
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
172
203
  };
173
204
  readonly py: {
174
205
  readonly property: "padding";
175
- readonly properties: readonly ["paddingTop", "paddingBottom"];
206
+ readonly properties: {
207
+ readonly physical: readonly ["paddingTop", "paddingBottom"];
208
+ readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
209
+ };
176
210
  readonly scale: "spacing";
211
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
177
212
  };
178
213
  readonly pt: {
179
- readonly property: "paddingTop";
214
+ readonly property: {
215
+ readonly physical: "paddingTop";
216
+ readonly logical: "paddingBlockStart";
217
+ };
180
218
  readonly scale: "spacing";
219
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
181
220
  };
182
221
  readonly pb: {
183
- readonly property: "paddingBottom";
222
+ readonly property: {
223
+ readonly physical: "paddingBottom";
224
+ readonly logical: "paddingBlockEnd";
225
+ };
184
226
  readonly scale: "spacing";
227
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
185
228
  };
186
229
  readonly pr: {
187
- readonly property: "paddingRight";
230
+ readonly property: {
231
+ readonly physical: "paddingRight";
232
+ readonly logical: "paddingInlineEnd";
233
+ };
188
234
  readonly scale: "spacing";
235
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
189
236
  };
190
237
  readonly pl: {
191
- readonly property: "paddingLeft";
238
+ readonly property: {
239
+ readonly physical: "paddingLeft";
240
+ readonly logical: "paddingInlineStart";
241
+ };
192
242
  readonly scale: "spacing";
243
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
193
244
  };
194
245
  readonly m: {
195
246
  readonly property: "margin";
@@ -197,29 +248,53 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
197
248
  };
198
249
  readonly mx: {
199
250
  readonly property: "margin";
200
- readonly properties: readonly ["marginLeft", "marginRight"];
251
+ readonly properties: {
252
+ readonly physical: readonly ["marginLeft", "marginRight"];
253
+ readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
254
+ };
255
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
201
256
  readonly scale: "spacing";
202
257
  };
203
258
  readonly my: {
204
259
  readonly property: "margin";
205
- readonly properties: readonly ["marginTop", "marginBottom"];
260
+ readonly properties: {
261
+ readonly physical: readonly ["marginTop", "marginBottom"];
262
+ readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
263
+ };
264
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
206
265
  readonly scale: "spacing";
207
266
  };
208
267
  readonly mt: {
209
- readonly property: "marginTop";
268
+ readonly property: {
269
+ readonly physical: "marginTop";
270
+ readonly logical: "marginBlockStart";
271
+ };
210
272
  readonly scale: "spacing";
273
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
211
274
  };
212
275
  readonly mb: {
213
- readonly property: "marginBottom";
276
+ readonly property: {
277
+ readonly physical: "marginBottom";
278
+ readonly logical: "marginBlockEnd";
279
+ };
214
280
  readonly scale: "spacing";
281
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
215
282
  };
216
283
  readonly mr: {
217
- readonly property: "marginRight";
284
+ readonly property: {
285
+ readonly physical: "marginRight";
286
+ readonly logical: "marginInlineEnd";
287
+ };
218
288
  readonly scale: "spacing";
289
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
219
290
  };
220
291
  readonly ml: {
221
- readonly property: "marginLeft";
292
+ readonly property: {
293
+ readonly physical: "marginLeft";
294
+ readonly logical: "marginInlineStart";
295
+ };
222
296
  readonly scale: "spacing";
297
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
223
298
  };
224
299
  }>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
225
300
  readonly position: {
@@ -434,32 +509,59 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
434
509
  readonly transform: (value: string | number) => string | 0;
435
510
  }>;
436
511
  width?: import("@codecademy/variance/dist/types/config").Scale<{
437
- readonly property: "width";
512
+ readonly property: {
513
+ readonly physical: "width";
514
+ readonly logical: "inlineSize";
515
+ };
516
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
438
517
  readonly transform: (value: string | number) => string | 0;
439
518
  }>;
440
519
  minWidth?: import("@codecademy/variance/dist/types/config").Scale<{
441
- readonly property: "minWidth";
520
+ readonly property: {
521
+ readonly physical: "minWidth";
522
+ readonly logical: "minInlineSize";
523
+ };
524
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
442
525
  readonly transform: (value: string | number) => string | 0;
443
526
  }>;
444
527
  maxWidth?: import("@codecademy/variance/dist/types/config").Scale<{
445
- readonly property: "maxWidth";
528
+ readonly property: {
529
+ readonly physical: "maxWidth";
530
+ readonly logical: "maxInlineSize";
531
+ };
532
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
446
533
  readonly transform: (value: string | number) => string | 0;
447
534
  }>;
448
535
  height?: import("@codecademy/variance/dist/types/config").Scale<{
449
- readonly property: "height";
536
+ readonly property: {
537
+ readonly physical: "height";
538
+ readonly logical: "blockSize";
539
+ };
540
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
450
541
  readonly transform: (value: string | number) => string | 0;
451
542
  }>;
452
543
  minHeight?: import("@codecademy/variance/dist/types/config").Scale<{
453
- readonly property: "minHeight";
544
+ readonly property: {
545
+ readonly physical: "minHeight";
546
+ readonly logical: "minBlockSize";
547
+ };
548
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
454
549
  readonly transform: (value: string | number) => string | 0;
455
550
  }>;
456
551
  maxHeight?: import("@codecademy/variance/dist/types/config").Scale<{
457
- readonly property: "maxHeight";
552
+ readonly property: {
553
+ readonly physical: "maxHeight";
554
+ readonly logical: "maxBlockSize";
555
+ };
556
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
458
557
  readonly transform: (value: string | number) => string | 0;
459
558
  }>;
460
559
  verticalAlign?: import("@codecademy/variance/dist/types/config").Scale<{
461
560
  readonly property: "verticalAlign";
462
561
  }>;
562
+ direction?: import("@codecademy/variance/dist/types/config").Scale<{
563
+ readonly property: "direction";
564
+ }>;
463
565
  color?: import("@codecademy/variance/dist/types/config").Scale<{
464
566
  readonly property: "color";
465
567
  readonly scale: "colors";
@@ -508,29 +610,53 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
508
610
  }>;
509
611
  px?: import("@codecademy/variance/dist/types/config").Scale<{
510
612
  readonly property: "padding";
511
- readonly properties: readonly ["paddingLeft", "paddingRight"];
613
+ readonly properties: {
614
+ readonly physical: readonly ["paddingLeft", "paddingRight"];
615
+ readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
616
+ };
512
617
  readonly scale: "spacing";
618
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
513
619
  }>;
514
620
  py?: import("@codecademy/variance/dist/types/config").Scale<{
515
621
  readonly property: "padding";
516
- readonly properties: readonly ["paddingTop", "paddingBottom"];
622
+ readonly properties: {
623
+ readonly physical: readonly ["paddingTop", "paddingBottom"];
624
+ readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
625
+ };
517
626
  readonly scale: "spacing";
627
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
518
628
  }>;
519
629
  pt?: import("@codecademy/variance/dist/types/config").Scale<{
520
- readonly property: "paddingTop";
630
+ readonly property: {
631
+ readonly physical: "paddingTop";
632
+ readonly logical: "paddingBlockStart";
633
+ };
521
634
  readonly scale: "spacing";
635
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
522
636
  }>;
523
637
  pb?: import("@codecademy/variance/dist/types/config").Scale<{
524
- readonly property: "paddingBottom";
638
+ readonly property: {
639
+ readonly physical: "paddingBottom";
640
+ readonly logical: "paddingBlockEnd";
641
+ };
525
642
  readonly scale: "spacing";
643
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
526
644
  }>;
527
645
  pr?: import("@codecademy/variance/dist/types/config").Scale<{
528
- readonly property: "paddingRight";
646
+ readonly property: {
647
+ readonly physical: "paddingRight";
648
+ readonly logical: "paddingInlineEnd";
649
+ };
529
650
  readonly scale: "spacing";
651
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
530
652
  }>;
531
653
  pl?: import("@codecademy/variance/dist/types/config").Scale<{
532
- readonly property: "paddingLeft";
654
+ readonly property: {
655
+ readonly physical: "paddingLeft";
656
+ readonly logical: "paddingInlineStart";
657
+ };
533
658
  readonly scale: "spacing";
659
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
534
660
  }>;
535
661
  m?: import("@codecademy/variance/dist/types/config").Scale<{
536
662
  readonly property: "margin";
@@ -538,29 +664,53 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
538
664
  }>;
539
665
  mx?: import("@codecademy/variance/dist/types/config").Scale<{
540
666
  readonly property: "margin";
541
- readonly properties: readonly ["marginLeft", "marginRight"];
667
+ readonly properties: {
668
+ readonly physical: readonly ["marginLeft", "marginRight"];
669
+ readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
670
+ };
671
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
542
672
  readonly scale: "spacing";
543
673
  }>;
544
674
  my?: import("@codecademy/variance/dist/types/config").Scale<{
545
675
  readonly property: "margin";
546
- readonly properties: readonly ["marginTop", "marginBottom"];
676
+ readonly properties: {
677
+ readonly physical: readonly ["marginTop", "marginBottom"];
678
+ readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
679
+ };
680
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
547
681
  readonly scale: "spacing";
548
682
  }>;
549
683
  mt?: import("@codecademy/variance/dist/types/config").Scale<{
550
- readonly property: "marginTop";
684
+ readonly property: {
685
+ readonly physical: "marginTop";
686
+ readonly logical: "marginBlockStart";
687
+ };
551
688
  readonly scale: "spacing";
689
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
552
690
  }>;
553
691
  mb?: import("@codecademy/variance/dist/types/config").Scale<{
554
- readonly property: "marginBottom";
692
+ readonly property: {
693
+ readonly physical: "marginBottom";
694
+ readonly logical: "marginBlockEnd";
695
+ };
555
696
  readonly scale: "spacing";
697
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
556
698
  }>;
557
699
  mr?: import("@codecademy/variance/dist/types/config").Scale<{
558
- readonly property: "marginRight";
700
+ readonly property: {
701
+ readonly physical: "marginRight";
702
+ readonly logical: "marginInlineEnd";
703
+ };
559
704
  readonly scale: "spacing";
705
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
560
706
  }>;
561
707
  ml?: import("@codecademy/variance/dist/types/config").Scale<{
562
- readonly property: "marginLeft";
708
+ readonly property: {
709
+ readonly physical: "marginLeft";
710
+ readonly logical: "marginInlineStart";
711
+ };
563
712
  readonly scale: "spacing";
713
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
564
714
  }>;
565
715
  position?: import("@codecademy/variance/dist/types/config").Scale<{
566
716
  readonly property: "position";
@@ -710,5 +860,5 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
710
860
  }>;
711
861
  } & {
712
862
  theme?: import("@emotion/react").Theme | undefined;
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">, {}>;
863
+ }, 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" | "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
864
  export {};
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.54.2",
4
+ "version": "9.54.3-alpha.409841.0",
5
5
  "author": "Codecademy <dev@codecademy.com>",
6
6
  "dependencies": {
7
- "@codecademy/gamut-styles": "17.11.2",
8
- "@codecademy/variance": "0.25.2"
7
+ "@codecademy/gamut-styles": "17.11.3-alpha.409841.0",
8
+ "@codecademy/variance": "0.25.3-alpha.409841.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": "dba147a168af471002f2f97b74eea97204bd843f"
32
+ "gitHead": "0a8ae4ad0ebdcddfcde2bda8dbf8f7bc79bc3143"
33
33
  }