@codecademy/gamut-icons 9.55.1-alpha.dfd8a7.0 → 9.55.1
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/props.d.ts +341 -2
- package/package.json +6 -7
package/dist/props.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { StyleProps } from '@codecademy/variance';
|
|
3
|
-
import { StyledComponent } from '@emotion/styled';
|
|
4
3
|
export interface IconStyleProps extends StyleProps<typeof iconProps> {
|
|
5
4
|
/**
|
|
6
5
|
* Set both the width and height of the icon at the same time
|
|
@@ -371,5 +370,345 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
371
370
|
readonly property: "borderBottomStyle";
|
|
372
371
|
};
|
|
373
372
|
}>>]>>;
|
|
374
|
-
export declare const Svg: StyledComponent<
|
|
373
|
+
export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
374
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
375
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
376
|
+
} & {
|
|
377
|
+
flexBasis?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
378
|
+
readonly property: "flexBasis";
|
|
379
|
+
}>;
|
|
380
|
+
flexShrink?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
381
|
+
readonly property: "flexShrink";
|
|
382
|
+
}>;
|
|
383
|
+
flexGrow?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
384
|
+
readonly property: "flexGrow";
|
|
385
|
+
}>;
|
|
386
|
+
order?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
387
|
+
readonly property: "order";
|
|
388
|
+
}>;
|
|
389
|
+
gridColumn?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
390
|
+
readonly property: "gridColumn";
|
|
391
|
+
}>;
|
|
392
|
+
gridRow?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
393
|
+
readonly property: "gridRow";
|
|
394
|
+
}>;
|
|
395
|
+
gridColumnStart?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
396
|
+
readonly property: "gridColumnStart";
|
|
397
|
+
}>;
|
|
398
|
+
gridRowStart?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
399
|
+
readonly property: "gridRowStart";
|
|
400
|
+
}>;
|
|
401
|
+
gridColumnEnd?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
402
|
+
readonly property: "gridColumnEnd";
|
|
403
|
+
}>;
|
|
404
|
+
gridRowEnd?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
405
|
+
readonly property: "gridRowEnd";
|
|
406
|
+
}>;
|
|
407
|
+
justifySelf?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
408
|
+
readonly property: "justifySelf";
|
|
409
|
+
}>;
|
|
410
|
+
alignSelf?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
411
|
+
readonly property: "alignSelf";
|
|
412
|
+
}>;
|
|
413
|
+
gridArea?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
414
|
+
readonly property: "gridArea";
|
|
415
|
+
}>;
|
|
416
|
+
containerType?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
417
|
+
readonly property: "containerType";
|
|
418
|
+
}>;
|
|
419
|
+
display?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
420
|
+
readonly property: "display";
|
|
421
|
+
}>;
|
|
422
|
+
overflow?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
423
|
+
readonly property: "overflow";
|
|
424
|
+
}>;
|
|
425
|
+
overflowX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
426
|
+
readonly property: "overflowX";
|
|
427
|
+
}>;
|
|
428
|
+
overflowY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
429
|
+
readonly property: "overflowY";
|
|
430
|
+
}>;
|
|
431
|
+
dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
432
|
+
readonly property: "width";
|
|
433
|
+
readonly properties: readonly ["width", "height"];
|
|
434
|
+
readonly transform: (value: string | number) => string | 0;
|
|
435
|
+
}>;
|
|
436
|
+
width?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
437
|
+
readonly property: "width";
|
|
438
|
+
readonly transform: (value: string | number) => string | 0;
|
|
439
|
+
}>;
|
|
440
|
+
minWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
441
|
+
readonly property: "minWidth";
|
|
442
|
+
readonly transform: (value: string | number) => string | 0;
|
|
443
|
+
}>;
|
|
444
|
+
maxWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
445
|
+
readonly property: "maxWidth";
|
|
446
|
+
readonly transform: (value: string | number) => string | 0;
|
|
447
|
+
}>;
|
|
448
|
+
height?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
449
|
+
readonly property: "height";
|
|
450
|
+
readonly transform: (value: string | number) => string | 0;
|
|
451
|
+
}>;
|
|
452
|
+
minHeight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
453
|
+
readonly property: "minHeight";
|
|
454
|
+
readonly transform: (value: string | number) => string | 0;
|
|
455
|
+
}>;
|
|
456
|
+
maxHeight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
457
|
+
readonly property: "maxHeight";
|
|
458
|
+
readonly transform: (value: string | number) => string | 0;
|
|
459
|
+
}>;
|
|
460
|
+
verticalAlign?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
461
|
+
readonly property: "verticalAlign";
|
|
462
|
+
}>;
|
|
463
|
+
color?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
464
|
+
readonly property: "color";
|
|
465
|
+
readonly scale: "colors";
|
|
466
|
+
}>;
|
|
467
|
+
textColor?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
468
|
+
readonly property: "color";
|
|
469
|
+
readonly scale: "colors";
|
|
470
|
+
}>;
|
|
471
|
+
bg?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
472
|
+
readonly property: "backgroundColor";
|
|
473
|
+
readonly scale: "colors";
|
|
474
|
+
}>;
|
|
475
|
+
borderColor?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
476
|
+
readonly property: "borderColor";
|
|
477
|
+
readonly scale: "colors";
|
|
478
|
+
}>;
|
|
479
|
+
borderColorX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
480
|
+
readonly property: "borderColor";
|
|
481
|
+
readonly properties: readonly ["borderLeftColor", "borderRightColor"];
|
|
482
|
+
readonly scale: "colors";
|
|
483
|
+
}>;
|
|
484
|
+
borderColorY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
485
|
+
readonly property: "borderColor";
|
|
486
|
+
readonly properties: readonly ["borderTopColor", "borderBottomColor"];
|
|
487
|
+
readonly scale: "colors";
|
|
488
|
+
}>;
|
|
489
|
+
borderColorLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
490
|
+
readonly property: "borderLeftColor";
|
|
491
|
+
readonly scale: "colors";
|
|
492
|
+
}>;
|
|
493
|
+
borderColorRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
494
|
+
readonly property: "borderRightColor";
|
|
495
|
+
readonly scale: "colors";
|
|
496
|
+
}>;
|
|
497
|
+
borderColorTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
498
|
+
readonly property: "borderTopColor";
|
|
499
|
+
readonly scale: "colors";
|
|
500
|
+
}>;
|
|
501
|
+
borderColorBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
502
|
+
readonly property: "borderBottomColor";
|
|
503
|
+
readonly scale: "colors";
|
|
504
|
+
}>;
|
|
505
|
+
p?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
506
|
+
readonly property: "padding";
|
|
507
|
+
readonly scale: "spacing";
|
|
508
|
+
}>;
|
|
509
|
+
px?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
510
|
+
readonly property: "padding";
|
|
511
|
+
readonly properties: readonly ["paddingLeft", "paddingRight"];
|
|
512
|
+
readonly scale: "spacing";
|
|
513
|
+
}>;
|
|
514
|
+
py?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
515
|
+
readonly property: "padding";
|
|
516
|
+
readonly properties: readonly ["paddingTop", "paddingBottom"];
|
|
517
|
+
readonly scale: "spacing";
|
|
518
|
+
}>;
|
|
519
|
+
pt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
520
|
+
readonly property: "paddingTop";
|
|
521
|
+
readonly scale: "spacing";
|
|
522
|
+
}>;
|
|
523
|
+
pb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
524
|
+
readonly property: "paddingBottom";
|
|
525
|
+
readonly scale: "spacing";
|
|
526
|
+
}>;
|
|
527
|
+
pr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
528
|
+
readonly property: "paddingRight";
|
|
529
|
+
readonly scale: "spacing";
|
|
530
|
+
}>;
|
|
531
|
+
pl?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
532
|
+
readonly property: "paddingLeft";
|
|
533
|
+
readonly scale: "spacing";
|
|
534
|
+
}>;
|
|
535
|
+
m?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
536
|
+
readonly property: "margin";
|
|
537
|
+
readonly scale: "spacing";
|
|
538
|
+
}>;
|
|
539
|
+
mx?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
540
|
+
readonly property: "margin";
|
|
541
|
+
readonly properties: readonly ["marginLeft", "marginRight"];
|
|
542
|
+
readonly scale: "spacing";
|
|
543
|
+
}>;
|
|
544
|
+
my?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
545
|
+
readonly property: "margin";
|
|
546
|
+
readonly properties: readonly ["marginTop", "marginBottom"];
|
|
547
|
+
readonly scale: "spacing";
|
|
548
|
+
}>;
|
|
549
|
+
mt?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
550
|
+
readonly property: "marginTop";
|
|
551
|
+
readonly scale: "spacing";
|
|
552
|
+
}>;
|
|
553
|
+
mb?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
554
|
+
readonly property: "marginBottom";
|
|
555
|
+
readonly scale: "spacing";
|
|
556
|
+
}>;
|
|
557
|
+
mr?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
558
|
+
readonly property: "marginRight";
|
|
559
|
+
readonly scale: "spacing";
|
|
560
|
+
}>;
|
|
561
|
+
ml?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
562
|
+
readonly property: "marginLeft";
|
|
563
|
+
readonly scale: "spacing";
|
|
564
|
+
}>;
|
|
565
|
+
position?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
566
|
+
readonly property: "position";
|
|
567
|
+
}>;
|
|
568
|
+
inset?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
569
|
+
readonly property: "inset";
|
|
570
|
+
readonly properties: readonly ["top", "right", "bottom", "left"];
|
|
571
|
+
readonly transform: (value: string | number) => string | 0;
|
|
572
|
+
}>;
|
|
573
|
+
top?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
574
|
+
readonly property: "top";
|
|
575
|
+
readonly transform: (value: string | number) => string | 0;
|
|
576
|
+
}>;
|
|
577
|
+
right?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
578
|
+
readonly property: "right";
|
|
579
|
+
readonly transform: (value: string | number) => string | 0;
|
|
580
|
+
}>;
|
|
581
|
+
bottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
582
|
+
readonly property: "bottom";
|
|
583
|
+
readonly transform: (value: string | number) => string | 0;
|
|
584
|
+
}>;
|
|
585
|
+
left?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
586
|
+
readonly property: "left";
|
|
587
|
+
readonly transform: (value: string | number) => string | 0;
|
|
588
|
+
}>;
|
|
589
|
+
zIndex?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
590
|
+
readonly property: "zIndex";
|
|
591
|
+
}>;
|
|
592
|
+
opacity?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
593
|
+
readonly property: "opacity";
|
|
594
|
+
}>;
|
|
595
|
+
border?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
596
|
+
readonly property: "border";
|
|
597
|
+
readonly scale: "borders";
|
|
598
|
+
}>;
|
|
599
|
+
borderX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
600
|
+
readonly property: "border";
|
|
601
|
+
readonly properties: readonly ["borderLeft", "borderRight"];
|
|
602
|
+
readonly scale: "borders";
|
|
603
|
+
}>;
|
|
604
|
+
borderY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
605
|
+
readonly property: "border";
|
|
606
|
+
readonly properties: readonly ["borderTop", "borderBottom"];
|
|
607
|
+
readonly scale: "borders";
|
|
608
|
+
}>;
|
|
609
|
+
borderTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
610
|
+
readonly property: "borderTop";
|
|
611
|
+
readonly scale: "borders";
|
|
612
|
+
}>;
|
|
613
|
+
borderRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
614
|
+
readonly property: "borderRight";
|
|
615
|
+
readonly scale: "borders";
|
|
616
|
+
}>;
|
|
617
|
+
borderBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
618
|
+
readonly property: "borderBottom";
|
|
619
|
+
readonly scale: "borders";
|
|
620
|
+
}>;
|
|
621
|
+
borderLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
622
|
+
readonly property: "borderLeft";
|
|
623
|
+
readonly scale: "borders";
|
|
624
|
+
}>;
|
|
625
|
+
borderWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
626
|
+
readonly property: "borderWidth";
|
|
627
|
+
}>;
|
|
628
|
+
borderWidthX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
629
|
+
readonly property: "borderWidth";
|
|
630
|
+
readonly properties: readonly ["borderLeftWidth", "borderRightWidth"];
|
|
631
|
+
}>;
|
|
632
|
+
borderWidthY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
633
|
+
readonly property: "borderWidth";
|
|
634
|
+
readonly properties: readonly ["borderTopWidth", "borderBottomWidth"];
|
|
635
|
+
}>;
|
|
636
|
+
borderWidthLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
637
|
+
readonly property: "borderLeftWidth";
|
|
638
|
+
}>;
|
|
639
|
+
borderWidthRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
640
|
+
readonly property: "borderRightWidth";
|
|
641
|
+
}>;
|
|
642
|
+
borderWidthTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
643
|
+
readonly property: "borderTopWidth";
|
|
644
|
+
}>;
|
|
645
|
+
borderWidthBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
646
|
+
readonly property: "borderBottomWidth";
|
|
647
|
+
}>;
|
|
648
|
+
borderRadius?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
649
|
+
readonly property: "borderRadius";
|
|
650
|
+
readonly scale: "borderRadii";
|
|
651
|
+
}>;
|
|
652
|
+
borderRadiusLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
653
|
+
readonly property: "borderRadius";
|
|
654
|
+
readonly properties: readonly ["borderTopLeftRadius", "borderBottomLeftRadius"];
|
|
655
|
+
readonly scale: "borderRadii";
|
|
656
|
+
}>;
|
|
657
|
+
borderRadiusTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
658
|
+
readonly property: "borderRadius";
|
|
659
|
+
readonly properties: readonly ["borderTopLeftRadius", "borderTopRightRadius"];
|
|
660
|
+
readonly scale: "borderRadii";
|
|
661
|
+
}>;
|
|
662
|
+
borderRadiusBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
663
|
+
readonly property: "borderRadius";
|
|
664
|
+
readonly properties: readonly ["borderBottomLeftRadius", "borderBottomRightRadius"];
|
|
665
|
+
readonly scale: "borderRadii";
|
|
666
|
+
}>;
|
|
667
|
+
borderRadiusRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
668
|
+
readonly property: "borderRadius";
|
|
669
|
+
readonly properties: readonly ["borderTopRightRadius", "borderBottomRightRadius"];
|
|
670
|
+
readonly scale: "borderRadii";
|
|
671
|
+
}>;
|
|
672
|
+
borderRadiusTopLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
673
|
+
readonly property: "borderTopLeftRadius";
|
|
674
|
+
readonly scale: "borderRadii";
|
|
675
|
+
}>;
|
|
676
|
+
borderRadiusTopRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
677
|
+
readonly property: "borderTopRightRadius";
|
|
678
|
+
readonly scale: "borderRadii";
|
|
679
|
+
}>;
|
|
680
|
+
borderRadiusBottomRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
681
|
+
readonly property: "borderBottomRightRadius";
|
|
682
|
+
readonly scale: "borderRadii";
|
|
683
|
+
}>;
|
|
684
|
+
borderRadiusBottomLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
685
|
+
readonly property: "borderBottomLeftRadius";
|
|
686
|
+
readonly scale: "borderRadii";
|
|
687
|
+
}>;
|
|
688
|
+
borderStyle?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
689
|
+
readonly property: "borderStyle";
|
|
690
|
+
}>;
|
|
691
|
+
borderStyleX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
692
|
+
readonly property: "borderStyle";
|
|
693
|
+
readonly properties: readonly ["borderLeftStyle", "borderRightStyle"];
|
|
694
|
+
}>;
|
|
695
|
+
borderStyleY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
696
|
+
readonly property: "borderStyle";
|
|
697
|
+
readonly properties: readonly ["borderTopStyle", "borderBottomStyle"];
|
|
698
|
+
}>;
|
|
699
|
+
borderStyleLeft?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
700
|
+
readonly property: "borderLeftStyle";
|
|
701
|
+
}>;
|
|
702
|
+
borderStyleRight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
703
|
+
readonly property: "borderRightStyle";
|
|
704
|
+
}>;
|
|
705
|
+
borderStyleTop?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
706
|
+
readonly property: "borderTopStyle";
|
|
707
|
+
}>;
|
|
708
|
+
borderStyleBottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
709
|
+
readonly property: "borderBottomStyle";
|
|
710
|
+
}>;
|
|
711
|
+
} & {
|
|
712
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
713
|
+
}, Pick<import("react").SVGProps<SVGSVGElement>, "string" | "scale" | "filter" | "fill" | "values" | "spacing" | "name" | "alignmentBaseline" | "baselineShift" | "clipPath" | "clipRule" | "colorInterpolationFilters" | "cursor" | "cx" | "cy" | "d" | "direction" | "dominantBaseline" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "fontSizeAdjust" | "fontVariant" | "imageRendering" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "paintOrder" | "pointerEvents" | "r" | "rotate" | "rx" | "ry" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "textRendering" | "transform" | "transformOrigin" | "unicodeBidi" | "vectorEffect" | "visibility" | "wordSpacing" | "writingMode" | "x" | "y" | "mask" | "offset" | "min" | "max" | "end" | "clip" | "suppressHydrationWarning" | "className" | "id" | "lang" | "media" | "method" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolation" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "fontStretch" | "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" | "limitingConeAngle" | "local" | "markerHeight" | "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" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "seed" | "slope" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "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" | "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">, {}>;
|
|
375
714
|
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.55.1
|
|
4
|
+
"version": "9.55.1",
|
|
5
5
|
"author": "Codecademy <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/gamut-styles": "17.11.3
|
|
8
|
-
"@codecademy/variance": "0.25.
|
|
7
|
+
"@codecademy/gamut-styles": "17.11.3",
|
|
8
|
+
"@codecademy/variance": "0.25.2"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist"
|
|
@@ -16,9 +16,8 @@
|
|
|
16
16
|
"peerDependencies": {
|
|
17
17
|
"@emotion/react": "^11.4.0",
|
|
18
18
|
"@emotion/styled": "^11.3.0",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"react": "^17.0.2 || ^18.2.0 || ^19.0.0"
|
|
19
|
+
"lodash": "^4.17.23",
|
|
20
|
+
"react": "^17.0.2 || ^18.3.0"
|
|
22
21
|
},
|
|
23
22
|
"publishConfig": {
|
|
24
23
|
"access": "public"
|
|
@@ -30,5 +29,5 @@
|
|
|
30
29
|
},
|
|
31
30
|
"sideEffects": false,
|
|
32
31
|
"types": "dist/index.d.ts",
|
|
33
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "bbc4cf8da76ebc754ed05b11acd9d2e81bb8683e"
|
|
34
33
|
}
|