@mirohq/design-system-icons 0.8.1-checkbox.0 → 0.9.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/main.js +1226 -37
- package/dist/main.js.map +1 -1
- package/dist/module.js +1183 -38
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +89 -11
- package/package.json +4 -4
- package/react/arrow-arc-left.tsx +34 -0
- package/react/arrow-arc-right.tsx +34 -0
- package/react/arrow-bend-up-right.tsx +34 -0
- package/react/arrow-fat-up-right.tsx +31 -0
- package/react/arrow-up-circle.tsx +31 -0
- package/react/arrows-in-simple.tsx +34 -0
- package/react/arrows-out-cardinal.tsx +34 -0
- package/react/arrows-out-lines-horizontal.tsx +34 -0
- package/react/arrows-out-simple.tsx +34 -0
- package/react/chevron-down-double.tsx +34 -0
- package/react/chevron-left-double.tsx +34 -0
- package/react/chevron-right-double.tsx +34 -0
- package/react/chevron-up-double.tsx +34 -0
- package/react/chevron-up-down-line.tsx +34 -0
- package/react/chevron-up-down.tsx +34 -0
- package/react/circle-slash.tsx +33 -0
- package/react/cross-square.tsx +34 -0
- package/react/cursor-lines.tsx +31 -0
- package/react/dots-nine.tsx +25 -0
- package/react/dots-three.tsx +25 -0
- package/react/dots-two.tsx +25 -0
- package/react/download.tsx +34 -0
- package/react/export.tsx +34 -0
- package/react/grid.tsx +34 -0
- package/react/hand-pointing.tsx +31 -0
- package/react/index.ts +44 -0
- package/react/login.tsx +34 -0
- package/react/logout.tsx +34 -0
- package/react/navigation-arrow-lines.tsx +31 -0
- package/react/navigation-up-left-filled.tsx +31 -0
- package/react/navigation-up-left-slash.tsx +34 -0
- package/react/navigation-up-right.tsx +34 -0
- package/react/paper-plane-filled-right.tsx +27 -0
- package/react/paper-plane-tilt.tsx +34 -0
- package/react/rectangle-arrow-up-center.tsx +34 -0
- package/react/shuffle.tsx +34 -0
- package/react/star-filled.tsx +31 -0
- package/react/star.tsx +34 -0
- package/react/sticky-corners.tsx +1 -1
- package/react/stroke-1.tsx +34 -0
- package/react/stroke-2.tsx +34 -0
- package/react/stroke-3.tsx +34 -0
- package/react/stroke-4.tsx +34 -0
- package/react/stroke-5.tsx +34 -0
- package/react/stroke-6.tsx +34 -0
- package/react/tick-circle.tsx +31 -0
- package/svg/24/arrow-arc-left.svg +1 -0
- package/svg/24/arrow-arc-right.svg +1 -0
- package/svg/24/arrow-bend-up-right.svg +1 -0
- package/svg/24/arrow-fat-up-right.svg +1 -0
- package/svg/24/arrow-up-circle.svg +1 -0
- package/svg/24/arrows-in-simple.svg +1 -0
- package/svg/24/arrows-out-cardinal.svg +1 -0
- package/svg/24/arrows-out-lines-horizontal.svg +1 -0
- package/svg/24/arrows-out-simple.svg +1 -0
- package/svg/24/chevron-down-double.svg +1 -0
- package/svg/24/chevron-left-double.svg +1 -0
- package/svg/24/chevron-right-double.svg +1 -0
- package/svg/24/chevron-up-double.svg +1 -0
- package/svg/24/chevron-up-down-line.svg +1 -0
- package/svg/24/chevron-up-down.svg +1 -0
- package/svg/24/circle-slash.svg +1 -0
- package/svg/24/cross-square.svg +1 -0
- package/svg/24/cursor-lines.svg +1 -0
- package/svg/24/dots-nine.svg +1 -0
- package/svg/24/dots-three.svg +1 -0
- package/svg/24/dots-two.svg +1 -0
- package/svg/24/download.svg +1 -0
- package/svg/24/export.svg +1 -0
- package/svg/24/grid.svg +1 -0
- package/svg/24/hand-pointing.svg +1 -0
- package/svg/24/login.svg +1 -0
- package/svg/24/logout.svg +1 -0
- package/svg/24/navigation-arrow-lines.svg +1 -0
- package/svg/24/navigation-up-left-filled.svg +1 -0
- package/svg/24/navigation-up-left-slash.svg +1 -0
- package/svg/24/navigation-up-right.svg +1 -0
- package/svg/24/paper-plane-filled-right.svg +1 -0
- package/svg/24/paper-plane-tilt.svg +1 -0
- package/svg/24/rectangle-arrow-up-center.svg +1 -0
- package/svg/24/shuffle.svg +1 -0
- package/svg/24/star-filled.svg +1 -0
- package/svg/24/star.svg +1 -0
- package/svg/24/sticky-corners.svg +1 -1
- package/svg/24/stroke-1.svg +1 -0
- package/svg/24/stroke-2.svg +1 -0
- package/svg/24/stroke-3.svg +1 -0
- package/svg/24/stroke-4.svg +1 -0
- package/svg/24/stroke-5.svg +1 -0
- package/svg/24/stroke-6.svg +1 -0
- package/svg/24/tick-circle.svg +1 -0
- package/svg/meta.json +380 -7
package/dist/types.d.ts
CHANGED
|
@@ -424,16 +424,6 @@ declare const StyledIcon: react.ForwardRefExoticComponent<Pick<Omit<{
|
|
|
424
424
|
readonly [$$PropertyValue]: "margin";
|
|
425
425
|
};
|
|
426
426
|
};
|
|
427
|
-
square: (value: {
|
|
428
|
-
readonly [$$PropertyValue]: "width";
|
|
429
|
-
}) => {
|
|
430
|
-
width: {
|
|
431
|
-
readonly [$$PropertyValue]: "width";
|
|
432
|
-
};
|
|
433
|
-
height: {
|
|
434
|
-
readonly [$$PropertyValue]: "width";
|
|
435
|
-
};
|
|
436
|
-
};
|
|
437
427
|
}>>> & _mirohq_design_system_stitches.CustomStylesProps, "string" | "clipPath" | "color" | "cursor" | "direction" | "display" | "filter" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "height" | "imageRendering" | "letterSpacing" | "opacity" | "order" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "visibility" | "width" | "wordSpacing" | "writingMode" | "mask" | "offset" | "overflow" | "textDecoration" | "alignmentBaseline" | "baselineShift" | "clip" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fill" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "asChild" | "media" | "path" | "crossOrigin" | "href" | "max" | "method" | "min" | "name" | "size" | "target" | "type" | "id" | "lang" | "tabIndex" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "end" | "local" | "x" | "y" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mode" | "numOctaves" | "operator" | "orient" | "orientation" | "origin" | "overlinePosition" | "overlineThickness" | "panose1" | "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" | "slope" | "spacing" | "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" | "values" | "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" | keyof _mirohq_design_system_stitches.CustomStylesProps> & react.RefAttributes<SVGSVGElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_mirohq_design_system_primitive.PrimitiveProps<"svg">>, {
|
|
438
428
|
size?: "small" | "medium" | "large" | undefined;
|
|
439
429
|
color?: "background-neutrals" | "background-neutrals-body" | "background-neutrals-container" | "background-neutrals-inverted" | "background-neutrals-inverted-subtle" | "background-neutrals-subtle" | "background-neutrals-subtle-hover" | "background-neutrals-subtle-active" | "background-neutrals-disabled" | "background-neutrals-controls-disabled" | "background-neutrals-scrolls" | "background-neutrals-inactive" | "background-neutrals-inactive-hover" | "background-primary-prominent" | "background-primary-prominent-hover" | "background-primary-prominent-active" | "background-primary-prominent-selected" | "background-primary-subtle" | "background-primary-subtle-hover" | "background-primary-subtle-active" | "background-primary-subtle-selected" | "background-danger-prominent" | "background-danger-prominent-hover" | "background-danger-prominent-active" | "background-danger" | "background-danger-hover" | "background-success" | "background-warning-subtle" | "background-warning-prominent" | "text-neutrals-inverted" | "text-neutrals" | "text-neutrals-subtle" | "text-neutrals-placeholder-only" | "text-neutrals-placeholder" | "text-neutrals-disabled" | "text-primary-inverted" | "text-primary" | "text-primary-hover" | "text-primary-active" | "text-primary-selected" | "text-primary-inverted-subtle" | "text-danger-inverted" | "text-danger" | "text-danger-hover" | "text-danger-active" | "text-success" | "text-warning" | "icon-neutrals-inverted" | "icon-neutrals" | "icon-neutrals-with-text" | "icon-neutrals-subtle" | "icon-neutrals-disabled" | "icon-neutrals-search" | "icon-neutrals-inactive" | "icon-neutrals-inactive-hover" | "icon-primary-inverted" | "icon-primary" | "icon-primary-hover" | "icon-primary-active" | "icon-primary-selected" | "icon-danger-inverted" | "icon-danger" | "icon-danger-hover" | "icon-danger-active" | "icon-success-inverted" | "icon-success" | "icon-warning" | "border-neutrals" | "border-neutrals-hover" | "border-neutrals-active" | "border-neutrals-disabled" | "border-neutrals-controls" | "border-neutrals-controls-disabled" | "border-neutrals-subtle" | "border-neutrals-inverted" | "border-primary" | "border-primary-hover" | "border-primary-active" | "border-primary-inverted" | "border-danger" | "border-success" | "border-warning" | "blue-100" | "blue-200" | "blue-300" | "blue-400" | "blue-500" | "blue-600" | "blue-700" | "blue-800" | "blue-900" | "blue-1000" | "gray-100" | "gray-200" | "gray-300" | "gray-400" | "gray-500" | "gray-600" | "gray-700" | "gray-800" | "gray-900" | "indigo-100" | "indigo-200" | "indigo-300" | "indigo-400" | "indigo-500" | "indigo-600" | "indigo-700" | "indigo-800" | "indigo-900" | "red-100" | "red-200" | "red-300" | "red-400" | "red-500" | "red-600" | "red-700" | "red-800" | "red-900" | "yellow-100" | "yellow-200" | "yellow-300" | "yellow-400" | "yellow-500" | "yellow-600" | "yellow-700" | "yellow-800" | "yellow-900" | "green-100" | "green-200" | "green-300" | "green-400" | "green-500" | "green-600" | "green-700" | "green-800" | "green-900" | "black" | "white" | "transparent" | undefined;
|
|
@@ -467,6 +457,12 @@ declare const IconAlignRight: ForwardRefExoticComponent<IconProps & RefAttribute
|
|
|
467
457
|
|
|
468
458
|
declare const IconAlignTop: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
469
459
|
|
|
460
|
+
declare const IconArrowArcLeft: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
461
|
+
|
|
462
|
+
declare const IconArrowArcRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
463
|
+
|
|
464
|
+
declare const IconArrowBendUpRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
465
|
+
|
|
470
466
|
declare const IconArrowBoxOut: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
471
467
|
|
|
472
468
|
declare const IconArrowClockwiseDownRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -485,10 +481,14 @@ declare const IconArrowDown: ForwardRefExoticComponent<IconProps & RefAttributes
|
|
|
485
481
|
|
|
486
482
|
declare const IconArrowFatRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
487
483
|
|
|
484
|
+
declare const IconArrowFatUpRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
485
|
+
|
|
488
486
|
declare const IconArrowLeft: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
489
487
|
|
|
490
488
|
declare const IconArrowRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
491
489
|
|
|
490
|
+
declare const IconArrowUpCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
491
|
+
|
|
492
492
|
declare const IconArrowUpLeft: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
493
493
|
|
|
494
494
|
declare const IconArrowUpRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -499,6 +499,14 @@ declare const IconArrowsClockwiseX: ForwardRefExoticComponent<IconProps & RefAtt
|
|
|
499
499
|
|
|
500
500
|
declare const IconArrowsClockwiseY: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
501
501
|
|
|
502
|
+
declare const IconArrowsInSimple: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
503
|
+
|
|
504
|
+
declare const IconArrowsOutCardinal: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
505
|
+
|
|
506
|
+
declare const IconArrowsOutLinesHorizontal: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
507
|
+
|
|
508
|
+
declare const IconArrowsOutSimple: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
509
|
+
|
|
502
510
|
declare const IconArticle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
503
511
|
|
|
504
512
|
declare const IconAt: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -555,12 +563,24 @@ declare const IconCheckMark: ForwardRefExoticComponent<IconProps & RefAttributes
|
|
|
555
563
|
|
|
556
564
|
declare const IconCheckboardSquareCentered: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
557
565
|
|
|
566
|
+
declare const IconChevronDownDouble: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
567
|
+
|
|
558
568
|
declare const IconChevronDown: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
559
569
|
|
|
570
|
+
declare const IconChevronLeftDouble: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
571
|
+
|
|
560
572
|
declare const IconChevronLeft: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
561
573
|
|
|
574
|
+
declare const IconChevronRightDouble: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
575
|
+
|
|
562
576
|
declare const IconChevronRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
563
577
|
|
|
578
|
+
declare const IconChevronUpDouble: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
579
|
+
|
|
580
|
+
declare const IconChevronUpDownLine: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
581
|
+
|
|
582
|
+
declare const IconChevronUpDown: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
583
|
+
|
|
564
584
|
declare const IconChevronUp: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
565
585
|
|
|
566
586
|
declare const IconCircleCorners: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -569,6 +589,8 @@ declare const IconCircleMotionX: ForwardRefExoticComponent<IconProps & RefAttrib
|
|
|
569
589
|
|
|
570
590
|
declare const IconCircleNotch: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
571
591
|
|
|
592
|
+
declare const IconCircleSlash: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
593
|
+
|
|
572
594
|
declare const IconCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
573
595
|
|
|
574
596
|
declare const IconCirclesConnected: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -597,12 +619,16 @@ declare const IconCrop: ForwardRefExoticComponent<IconProps & RefAttributes<SVGS
|
|
|
597
619
|
|
|
598
620
|
declare const IconCrossCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
599
621
|
|
|
622
|
+
declare const IconCrossSquare: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
623
|
+
|
|
600
624
|
declare const IconCross: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
601
625
|
|
|
602
626
|
declare const IconCube: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
603
627
|
|
|
604
628
|
declare const IconCursorFilled: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
605
629
|
|
|
630
|
+
declare const IconCursorLines: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
631
|
+
|
|
606
632
|
declare const IconCursorText: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
607
633
|
|
|
608
634
|
declare const IconCursor: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -621,12 +647,22 @@ declare const IconDistributeHorizontal: ForwardRefExoticComponent<IconProps & Re
|
|
|
621
647
|
|
|
622
648
|
declare const IconDistributeVertical: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
623
649
|
|
|
650
|
+
declare const IconDotsNine: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
651
|
+
|
|
652
|
+
declare const IconDotsThree: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
653
|
+
|
|
654
|
+
declare const IconDotsTwo: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
655
|
+
|
|
656
|
+
declare const IconDownload: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
657
|
+
|
|
624
658
|
declare const IconEnvelope: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
625
659
|
|
|
626
660
|
declare const IconEraser: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
627
661
|
|
|
628
662
|
declare const IconExclamationPointCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
629
663
|
|
|
664
|
+
declare const IconExport: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
665
|
+
|
|
630
666
|
declare const IconEyeClosedDotsFourFrameBroken: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
631
667
|
|
|
632
668
|
declare const IconEyeClosed: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -665,8 +701,12 @@ declare const IconGridFour: ForwardRefExoticComponent<IconProps & RefAttributes<
|
|
|
665
701
|
|
|
666
702
|
declare const IconGridSix: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
667
703
|
|
|
704
|
+
declare const IconGrid: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
705
|
+
|
|
668
706
|
declare const IconHandFilled: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
669
707
|
|
|
708
|
+
declare const IconHandPointing: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
709
|
+
|
|
670
710
|
declare const IconHand: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
671
711
|
|
|
672
712
|
declare const IconHighlighterUnderline: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -725,6 +765,10 @@ declare const IconLockClosed: ForwardRefExoticComponent<IconProps & RefAttribute
|
|
|
725
765
|
|
|
726
766
|
declare const IconLockOpen: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
727
767
|
|
|
768
|
+
declare const IconLogin: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
769
|
+
|
|
770
|
+
declare const IconLogout: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
771
|
+
|
|
728
772
|
declare const IconMagnet: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
729
773
|
|
|
730
774
|
declare const IconMagnifyingGlass: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -747,6 +791,14 @@ declare const IconMonitorStop: ForwardRefExoticComponent<IconProps & RefAttribut
|
|
|
747
791
|
|
|
748
792
|
declare const IconMouse: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
749
793
|
|
|
794
|
+
declare const IconNavigationArrowLines: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
795
|
+
|
|
796
|
+
declare const IconNavigationUpLeftFilled: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
797
|
+
|
|
798
|
+
declare const IconNavigationUpLeftSlash: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
799
|
+
|
|
800
|
+
declare const IconNavigationUpRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
801
|
+
|
|
750
802
|
declare const IconNext: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
751
803
|
|
|
752
804
|
declare const IconNodeLinesCurved: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -763,6 +815,10 @@ declare const IconNodesConnectionsThree: ForwardRefExoticComponent<IconProps & R
|
|
|
763
815
|
|
|
764
816
|
declare const IconNoteMagnifyingGlass: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
765
817
|
|
|
818
|
+
declare const IconPaperPlaneFilledRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
819
|
+
|
|
820
|
+
declare const IconPaperPlaneTilt: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
821
|
+
|
|
766
822
|
declare const IconParallelogram: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
767
823
|
|
|
768
824
|
declare const IconPauseCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -815,6 +871,8 @@ declare const IconQuestionMarkCircle: ForwardRefExoticComponent<IconProps & RefA
|
|
|
815
871
|
|
|
816
872
|
declare const IconQuestionMark: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
817
873
|
|
|
874
|
+
declare const IconRectangleArrowUpCenter: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
875
|
+
|
|
818
876
|
declare const IconRectangleDashLines: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
819
877
|
|
|
820
878
|
declare const IconRectangleDotLinePen: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -851,6 +909,8 @@ declare const IconShieldCheck: ForwardRefExoticComponent<IconProps & RefAttribut
|
|
|
851
909
|
|
|
852
910
|
declare const IconShieldLock: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
853
911
|
|
|
912
|
+
declare const IconShuffle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
913
|
+
|
|
854
914
|
declare const IconSidebarClosed: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
855
915
|
|
|
856
916
|
declare const IconSidebarOpen: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -911,6 +971,10 @@ declare const IconSquaresUnmerge: ForwardRefExoticComponent<IconProps & RefAttri
|
|
|
911
971
|
|
|
912
972
|
declare const IconStack: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
913
973
|
|
|
974
|
+
declare const IconStarFilled: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
975
|
+
|
|
976
|
+
declare const IconStar: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
977
|
+
|
|
914
978
|
declare const IconStickyCorners: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
915
979
|
|
|
916
980
|
declare const IconStickyNoteStack: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -923,6 +987,18 @@ declare const IconStickyNotesTwo: ForwardRefExoticComponent<IconProps & RefAttri
|
|
|
923
987
|
|
|
924
988
|
declare const IconStopCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
925
989
|
|
|
990
|
+
declare const IconStroke1: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
991
|
+
|
|
992
|
+
declare const IconStroke2: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
993
|
+
|
|
994
|
+
declare const IconStroke3: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
995
|
+
|
|
996
|
+
declare const IconStroke4: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
997
|
+
|
|
998
|
+
declare const IconStroke5: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
999
|
+
|
|
1000
|
+
declare const IconStroke6: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1001
|
+
|
|
926
1002
|
declare const IconTag: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
927
1003
|
|
|
928
1004
|
declare const IconTextAUnderline: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -959,6 +1035,8 @@ declare const IconTextUUnderlined: ForwardRefExoticComponent<IconProps & RefAttr
|
|
|
959
1035
|
|
|
960
1036
|
declare const IconThumbsUp: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
961
1037
|
|
|
1038
|
+
declare const IconTickCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1039
|
+
|
|
962
1040
|
declare const IconTicket: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
963
1041
|
|
|
964
1042
|
declare const IconTimer: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -1009,4 +1087,4 @@ declare const IconViewSideLeft: ForwardRefExoticComponent<IconProps & RefAttribu
|
|
|
1009
1087
|
|
|
1010
1088
|
declare const IconWallet: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1011
1089
|
|
|
1012
|
-
export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArticle, IconAt, IconBarThree, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookmark, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCalendarBlank, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCluster, IconClustered, IconCog, IconConeSerpentine, IconCornersThreeEyeOpen, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCube, IconCursor, IconCursorFilled, IconCursorText, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDistributeHorizontal, IconDistributeVertical, IconEnvelope, IconEraser, IconExclamationPointCircle, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGlobe, IconGraduationCap, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLink, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconMagnet, IconMagnifyingGlass, IconMap, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMouse, IconNext, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPlaceholder, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusText, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProps, IconPushPin, IconQuestionMark, IconQuestionMarkCircle, IconRectangleDashLines, IconRectangleDotLinePen, IconRectanglePlayStack, IconRectangleTick, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconScissors, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileySticker, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStickyCorners, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconTag, IconTextAUnderline, IconTextAlignCenter, IconTextAlignLeft, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTicket, IconTimer, IconTrackpad, IconTrash, IconTrashSimple, IconTriangle, IconTrident, IconTrophy, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserEyeOpen, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet };
|
|
1090
|
+
export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArticle, IconAt, IconBarThree, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookmark, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCalendarBlank, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCluster, IconClustered, IconCog, IconConeSerpentine, IconCornersThreeEyeOpen, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDistributeHorizontal, IconDistributeVertical, IconDotsNine, IconDotsThree, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationPointCircle, IconExport, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGlobe, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLink, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMap, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMouse, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPlaceholder, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusText, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProps, IconPushPin, IconQuestionMark, IconQuestionMarkCircle, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectanglePlayStack, IconRectangleTick, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconScissors, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconShuffle, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileySticker, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStar, IconStarFilled, IconStickyCorners, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconTag, IconTextAUnderline, IconTextAlignCenter, IconTextAlignLeft, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimer, IconTrackpad, IconTrash, IconTrashSimple, IconTriangle, IconTrident, IconTrophy, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserEyeOpen, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-icons",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"react": "^16.14 || ^17"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
+
"@mirohq/design-system-link": "^1.1.5",
|
|
33
34
|
"@mirohq/design-system-primitive": "^1.0.4",
|
|
34
|
-
"@mirohq/design-system-stitches": "^2.
|
|
35
|
-
"@mirohq/design-system-utils": "^0.11.0"
|
|
36
|
-
"@mirohq/design-system-link": "^1.1.6-checkbox.0"
|
|
35
|
+
"@mirohq/design-system-stitches": "^2.0.12",
|
|
36
|
+
"@mirohq/design-system-utils": "^0.11.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@svgr/cli": "^6.5.1",
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconArrowArcLeft: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M20 15C18 9 9.5 7 4 15m0 0v-5m0 5h5'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconArrowArcRight: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M4 15c2-6 10.5-8 16 0m0 0v-5m0 5h-5'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconArrowBendUpRight: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M4 19c0-7 3-9 7-9h9m0 0-5-5m5 5-5 5'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconArrowFatUpRight: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
fill='currentColor'
|
|
22
|
+
d='m21 3 .97.243a1 1 0 0 0-1.212-1.213L21 3Zm-3 12-.707.707a1 1 0 0 0 1.677-.465L18 15Zm-3-3 .707-.707-.604-.604-.691.502L15 12ZM4 20l-.809-.588a1 1 0 0 0 1.397 1.397L4 20Zm8-11 .809.588.502-.69-.604-.605L12 9ZM9 6l-.243-.97a1 1 0 0 0-.464 1.677L9 6Zm11.03-3.243-3 12 1.94.486 3-12-1.94-.486Zm-1.323 11.536-3-3-1.414 1.414 3 3 1.414-1.414Zm-4.295-3.102-11 8 1.176 1.618 11-8-1.176-1.618Zm-9.603 9.397 8-11-1.618-1.176-8 11 1.618 1.176Zm7.898-12.295-3-3-1.414 1.414 3 3 1.414-1.414ZM9.243 6.97l12-3-.485-1.94-12 3 .485 1.94Z'
|
|
23
|
+
/>
|
|
24
|
+
</g>,
|
|
25
|
+
<defs>
|
|
26
|
+
<clipPath id='a'>
|
|
27
|
+
<path d='M0 0h24v24H0z' />
|
|
28
|
+
</clipPath>
|
|
29
|
+
</defs>
|
|
30
|
+
)
|
|
31
|
+
)
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconArrowUpCircle: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
fill='currentColor'
|
|
22
|
+
d='M11 17a1 1 0 1 0 2 0h-2Zm1-10 .707-.707a1 1 0 0 0-1.414 0L12 7Zm3.293 4.707a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm-8-1.414a1 1 0 1 0 1.414 1.414l-1.414-1.414ZM13 17V7h-2v10h2Zm-1.707-9.293 4 4 1.414-1.414-4-4-1.414 1.414Zm0-1.414-4 4 1.414 1.414 4-4-1.414-1.414ZM21 12a9 9 0 0 1-9 9v2c6.075 0 11-4.925 11-11h-2Zm-9 9a9 9 0 0 1-9-9H1c0 6.075 4.925 11 11 11v-2Zm-9-9a9 9 0 0 1 9-9V1C5.925 1 1 5.925 1 12h2Zm9-9a9 9 0 0 1 9 9h2c0-6.075-4.925-11-11-11v2Z'
|
|
23
|
+
/>
|
|
24
|
+
</g>,
|
|
25
|
+
<defs>
|
|
26
|
+
<clipPath id='a'>
|
|
27
|
+
<path d='M0 0h24v24H0z' />
|
|
28
|
+
</clipPath>
|
|
29
|
+
</defs>
|
|
30
|
+
)
|
|
31
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconArrowsInSimple: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='m21 3-5 5m0 0V3m0 5h5M3 21l5-5m0 0v5m0-5H3'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconArrowsOutCardinal: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M12 3v18m0-18 3 3m-3-3L9 6m3 15 3-3m-3 3-3-3m-6-6h18M3 12l3-3m-3 3 3 3m15-3-3-3m3 3-3 3'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconArrowsOutLinesHorizontal: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M2 6v12M22 6v12m-3-6H5m14 0-3-3m3 3-3 3M5 12l3-3m-3 3 3 3'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React, { forwardRef, createElement } from 'react'
|
|
2
|
+
import type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
3
|
+
|
|
4
|
+
import { StyledIcon } from '../src/icon'
|
|
5
|
+
import type { IconProps } from '../src/icon'
|
|
6
|
+
|
|
7
|
+
export const IconArrowsOutSimple: ForwardRefExoticComponent<
|
|
8
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
9
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
10
|
+
createElement(
|
|
11
|
+
StyledIcon,
|
|
12
|
+
{
|
|
13
|
+
...props,
|
|
14
|
+
size,
|
|
15
|
+
viewBox: '0 0 24 24',
|
|
16
|
+
fill: 'none',
|
|
17
|
+
ref: forwardRef,
|
|
18
|
+
},
|
|
19
|
+
<g clipPath='url(#a)'>
|
|
20
|
+
<path
|
|
21
|
+
stroke='currentColor'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='m16 8 5-5m0 0v5m0-5h-5M8 16l-5 5m0 0v-5m0 5h5'
|
|
26
|
+
/>
|
|
27
|
+
</g>,
|
|
28
|
+
<defs>
|
|
29
|
+
<clipPath id='a'>
|
|
30
|
+
<path d='M0 0h24v24H0z' />
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
)
|
|
34
|
+
)
|