@pzh-ui/icons 0.0.8 → 0.0.11
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/components/Code.cjs.js +2 -0
- package/dist/components/Code.cjs.js.map +1 -0
- package/dist/components/Code.d.ts +7 -0
- package/dist/components/Code.d.ts.map +1 -0
- package/dist/components/Code.es.js +7 -0
- package/dist/components/Code.es.js.map +1 -0
- package/dist/components/FileExport.cjs.js +2 -0
- package/dist/components/FileExport.cjs.js.map +1 -0
- package/dist/components/FileExport.d.ts +7 -0
- package/dist/components/FileExport.d.ts.map +1 -0
- package/dist/components/FileExport.es.js +7 -0
- package/dist/components/FileExport.es.js.map +1 -0
- package/dist/components/PenToSquare.cjs.js +2 -0
- package/dist/components/PenToSquare.cjs.js.map +1 -0
- package/dist/components/PenToSquare.d.ts +7 -0
- package/dist/components/PenToSquare.d.ts.map +1 -0
- package/dist/components/PenToSquare.es.js +7 -0
- package/dist/components/PenToSquare.es.js.map +1 -0
- package/dist/components/UniversalAccess.cjs.js +2 -0
- package/dist/components/UniversalAccess.cjs.js.map +1 -0
- package/dist/components/UniversalAccess.d.ts +7 -0
- package/dist/components/UniversalAccess.d.ts.map +1 -0
- package/dist/components/UniversalAccess.es.js +7 -0
- package/dist/components/UniversalAccess.es.js.map +1 -0
- package/dist/components/WavyLines.cjs.js +2 -0
- package/dist/components/WavyLines.cjs.js.map +1 -0
- package/dist/components/WavyLines.d.ts +7 -0
- package/dist/components/WavyLines.d.ts.map +1 -0
- package/dist/components/WavyLines.es.js +7 -0
- package/dist/components/WavyLines.es.js.map +1 -0
- package/dist/components/index.d.ts +5 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +5 -0
- package/dist/index.es.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var s=require("react/jsx-runtime"),i=require("react");const l=i.forwardRef(({size:r=14,...e},c)=>(r&&(e.width=r,e.height=r),s.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 640 512",ref:c,...e,children:s.jsx("path",{d:"M414.8 40.79l-128 448.01c-4.9 17-22.6 26.8-39.6 22-17-4.9-26.8-22.6-22-39.6l128-447.99c4.9-16.994 22.6-26.834 39.6-21.978 17 4.855 26.8 22.568 22 39.558zm103.8 80.61l112 112c12.5 12.5 12.5 32.7 0 45.2l-112 112c-12.5 12.5-32.7 12.5-45.2 0s-12.5-32.7 0-45.2l89.3-89.4-89.3-89.4c-12.5-12.5-12.5-32.7 0-45.2s32.7-12.5 45.2 0zm-352 45.2L77.25 256l89.35 89.4c12.5 12.5 12.5 32.7 0 45.2s-32.7 12.5-45.2 0L9.372 278.6c-12.496-12.5-12.496-32.7 0-45.2l112.028-112c12.5-12.5 32.7-12.5 45.2 0s12.5 32.7 0 45.2z"})}))),t=l;t.displayName="Code";module.exports=t;
|
|
2
|
+
//# sourceMappingURL=Code.cjs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Code.cjs.js","sources":["../../src/components/Code.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 640 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M414.8 40.79l-128 448.01c-4.9 17-22.6 26.8-39.6 22-17-4.9-26.8-22.6-22-39.6l128-447.99c4.9-16.994 22.6-26.834 39.6-21.978 17 4.855 26.8 22.568 22 39.558zm103.8 80.61l112 112c12.5 12.5 12.5 32.7 0 45.2l-112 112c-12.5 12.5-32.7 12.5-45.2 0s-12.5-32.7 0-45.2l89.3-89.4-89.3-89.4c-12.5-12.5-12.5-32.7 0-45.2s32.7-12.5 45.2 0zm-352 45.2L77.25 256l89.35 89.4c12.5 12.5 12.5 32.7 0 45.2s-32.7 12.5-45.2 0L9.372 278.6c-12.496-12.5-12.496-32.7 0-45.2l112.028-112c12.5-12.5 32.7-12.5 45.2 0s12.5 32.7 0 45.2z\" />\n </svg>\n )\n }\n)\nconst CodeIcon = SVGIcon\nCodeIcon.displayName = 'Code'\nexport default CodeIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","CodeIcon","displayName"],"mappings":"mEAIMA,KAAUC,GAAAA,EAAAA,WACZ,CAAC,CAAEC,KAAAA,EAAO,MAAOC,GAASC,QAEZC,GAAAA,MAAQH,EACdC,EAAMG,OAASJ,GAIfK,EAAAA,IACI,MAAA,CAAAC,MAAM,6BACNC,KAAK,eACLC,QAAQ,cACRC,IAAKP,KACDD,EACJS,SAAAL,EAAAA,IAAA,OAAA,CAAMM,EAAE,ofAAR,CAAA,CALA,CAAA,EATU,EAmBpBC,EAAWd,EACjBc,EAASC,YAAc"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface CustomIconProps extends SVGProps<SVGSVGElement> {
|
|
3
|
+
size?: number;
|
|
4
|
+
}
|
|
5
|
+
declare const CodeIcon: import("react").ForwardRefExoticComponent<Pick<CustomIconProps, "string" | "size" | "className" | "color" | "height" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "width" | "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" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "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" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "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-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"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
6
|
+
export default CodeIcon;
|
|
7
|
+
//# sourceMappingURL=Code.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Code.d.ts","sourceRoot":"","sources":["../../src/components/Code.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,QAAQ,EAAE,MAAM,OAAO,CAAA;AAC5C,UAAU,eAAgB,SAAQ,QAAQ,CAAC,aAAa,CAAC;IACrD,IAAI,CAAC,EAAE,MAAM,CAAA;CAChB;AAoBD,QAAA,MAAM,QAAQ,4lPAAU,CAAA;AAExB,eAAe,QAAQ,CAAA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
|
|
4
|
+
const s=forwardRef(({size:c=14,...l},t)=>(c&&(l.width=c,l.height=c),jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 640 512",ref:t,...l,children:jsx("path",{d:"M414.8 40.79l-128 448.01c-4.9 17-22.6 26.8-39.6 22-17-4.9-26.8-22.6-22-39.6l128-447.99c4.9-16.994 22.6-26.834 39.6-21.978 17 4.855 26.8 22.568 22 39.558zm103.8 80.61l112 112c12.5 12.5 12.5 32.7 0 45.2l-112 112c-12.5 12.5-32.7 12.5-45.2 0s-12.5-32.7 0-45.2l89.3-89.4-89.3-89.4c-12.5-12.5-12.5-32.7 0-45.2s32.7-12.5 45.2 0zm-352 45.2L77.25 256l89.35 89.4c12.5 12.5 12.5 32.7 0 45.2s-32.7 12.5-45.2 0L9.372 278.6c-12.496-12.5-12.496-32.7 0-45.2l112.028-112c12.5-12.5 32.7-12.5 45.2 0s12.5 32.7 0 45.2z"})}))),r=s;r.displayName="Code";
|
|
5
|
+
|
|
6
|
+
export { r as default };
|
|
7
|
+
//# sourceMappingURL=Code.es.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Code.es.js","sources":["../../src/components/Code.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 640 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M414.8 40.79l-128 448.01c-4.9 17-22.6 26.8-39.6 22-17-4.9-26.8-22.6-22-39.6l128-447.99c4.9-16.994 22.6-26.834 39.6-21.978 17 4.855 26.8 22.568 22 39.558zm103.8 80.61l112 112c12.5 12.5 12.5 32.7 0 45.2l-112 112c-12.5 12.5-32.7 12.5-45.2 0s-12.5-32.7 0-45.2l89.3-89.4-89.3-89.4c-12.5-12.5-12.5-32.7 0-45.2s32.7-12.5 45.2 0zm-352 45.2L77.25 256l89.35 89.4c12.5 12.5 12.5 32.7 0 45.2s-32.7 12.5-45.2 0L9.372 278.6c-12.496-12.5-12.496-32.7 0-45.2l112.028-112c12.5-12.5 32.7-12.5 45.2 0s12.5 32.7 0 45.2z\" />\n </svg>\n )\n }\n)\nconst CodeIcon = SVGIcon\nCodeIcon.displayName = 'Code'\nexport default CodeIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","CodeIcon","displayName"],"mappings":";;;AAIMA,MAAUC,CAAAA,CAAAA,UAAAA,CACZ,CAAC,CAAEC,IAAAA,CAAAA,CAAAA,CAAO,MAAOC,CAASC,CAAAA,CAAAA,CAAAA,QAEZC,CAAAA,CAAAA,KAAAA,CAAQH,EACdC,CAAMG,CAAAA,MAAAA,CAASJ,GAIfK,GACI,CAAA,KAAA,CAAA,CAAAC,KAAM,CAAA,4BAAA,CACNC,KAAK,cACLC,CAAAA,OAAAA,CAAQ,cACRC,GAAKP,CAAAA,CAAAA,CAAAA,GACDD,EACJS,QAAAL,CAAAA,GAAAA,CAAA,OAAA,CAAMM,CAAAA,CAAE,ofAAR,CAAA,CALA,CAAA,CATU,CAAA,CAAA,CAmBpBC,EAAWd,EACjBc,CAAAA,CAASC,WAAc,CAAA,MAAA;;;;"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=require("react/jsx-runtime"),i=require("react");const h=i.forwardRef(({size:e=14,...r},t)=>(e&&(r.width=e,r.height=e),c.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 576 512",ref:t,...r,children:c.jsx("path",{d:"M192 312c0-13.2 10.8-24 24-24h168V160H256c-17.67 0-32-14.33-32-32V0H48C21.49 0 0 21.49 0 48v416c0 26.5 21.49 48 48 48h288c26.51 0 48-21.49 48-48V336H216c-13.2 0-24-10.7-24-24zM256 0v128h128L256 0zm312.1 295l-80-80c-9.375-9.375-24.56-9.375-33.94 0s-9.375 24.56 0 33.94L494.1 288H384v48h110.1l-39.03 39.03C450.3 379.7 448 385.8 448 392s2.344 12.28 7.031 16.97c9.375 9.375 24.56 9.375 33.94 0l80-80c9.329-9.37 9.329-24.57-.871-33.97z"})}))),s=h;s.displayName="FileExport";module.exports=s;
|
|
2
|
+
//# sourceMappingURL=FileExport.cjs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FileExport.cjs.js","sources":["../../src/components/FileExport.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 576 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M192 312c0-13.2 10.8-24 24-24h168V160H256c-17.67 0-32-14.33-32-32V0H48C21.49 0 0 21.49 0 48v416c0 26.5 21.49 48 48 48h288c26.51 0 48-21.49 48-48V336H216c-13.2 0-24-10.7-24-24zM256 0v128h128L256 0zm312.1 295l-80-80c-9.375-9.375-24.56-9.375-33.94 0s-9.375 24.56 0 33.94L494.1 288H384v48h110.1l-39.03 39.03C450.3 379.7 448 385.8 448 392s2.344 12.28 7.031 16.97c9.375 9.375 24.56 9.375 33.94 0l80-80c9.329-9.37 9.329-24.57-.871-33.97z\" />\n </svg>\n )\n }\n)\nconst FileExportIcon = SVGIcon\nFileExportIcon.displayName = 'FileExport'\nexport default FileExportIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","FileExportIcon","displayName"],"mappings":"mEAIMA,KAAUC,GAAAA,EAAAA,WACZ,CAAC,CAAEC,KAAAA,EAAO,MAAOC,GAASC,QAEZC,GAAAA,MAAQH,EACdC,EAAMG,OAASJ,GAIfK,EAAAA,IACI,MAAA,CAAAC,MAAM,6BACNC,KAAK,eACLC,QAAQ,cACRC,IAAKP,KACDD,EACJS,SAAAL,EAAAA,IAAA,OAAA,CAAMM,EAAE,gbAAR,CAAA,CALA,CAAA,EATU,EAmBpBC,EAAiBd,EACvBc,EAAeC,YAAc"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface CustomIconProps extends SVGProps<SVGSVGElement> {
|
|
3
|
+
size?: number;
|
|
4
|
+
}
|
|
5
|
+
declare const FileExportIcon: import("react").ForwardRefExoticComponent<Pick<CustomIconProps, "string" | "size" | "className" | "color" | "height" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "width" | "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" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "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" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "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-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"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
6
|
+
export default FileExportIcon;
|
|
7
|
+
//# sourceMappingURL=FileExport.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FileExport.d.ts","sourceRoot":"","sources":["../../src/components/FileExport.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,QAAQ,EAAE,MAAM,OAAO,CAAA;AAC5C,UAAU,eAAgB,SAAQ,QAAQ,CAAC,aAAa,CAAC;IACrD,IAAI,CAAC,EAAE,MAAM,CAAA;CAChB;AAoBD,QAAA,MAAM,cAAc,4lPAAU,CAAA;AAE9B,eAAe,cAAc,CAAA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
|
|
4
|
+
const h=forwardRef(({size:r=14,...t},l)=>(r&&(t.width=r,t.height=r),jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 576 512",ref:l,...t,children:jsx("path",{d:"M192 312c0-13.2 10.8-24 24-24h168V160H256c-17.67 0-32-14.33-32-32V0H48C21.49 0 0 21.49 0 48v416c0 26.5 21.49 48 48 48h288c26.51 0 48-21.49 48-48V336H216c-13.2 0-24-10.7-24-24zM256 0v128h128L256 0zm312.1 295l-80-80c-9.375-9.375-24.56-9.375-33.94 0s-9.375 24.56 0 33.94L494.1 288H384v48h110.1l-39.03 39.03C450.3 379.7 448 385.8 448 392s2.344 12.28 7.031 16.97c9.375 9.375 24.56 9.375 33.94 0l80-80c9.329-9.37 9.329-24.57-.871-33.97z"})}))),o=h;o.displayName="FileExport";
|
|
5
|
+
|
|
6
|
+
export { o as default };
|
|
7
|
+
//# sourceMappingURL=FileExport.es.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FileExport.es.js","sources":["../../src/components/FileExport.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 576 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M192 312c0-13.2 10.8-24 24-24h168V160H256c-17.67 0-32-14.33-32-32V0H48C21.49 0 0 21.49 0 48v416c0 26.5 21.49 48 48 48h288c26.51 0 48-21.49 48-48V336H216c-13.2 0-24-10.7-24-24zM256 0v128h128L256 0zm312.1 295l-80-80c-9.375-9.375-24.56-9.375-33.94 0s-9.375 24.56 0 33.94L494.1 288H384v48h110.1l-39.03 39.03C450.3 379.7 448 385.8 448 392s2.344 12.28 7.031 16.97c9.375 9.375 24.56 9.375 33.94 0l80-80c9.329-9.37 9.329-24.57-.871-33.97z\" />\n </svg>\n )\n }\n)\nconst FileExportIcon = SVGIcon\nFileExportIcon.displayName = 'FileExport'\nexport default FileExportIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","FileExportIcon","displayName"],"mappings":";;;AAIMA,MAAUC,CAAAA,CAAAA,UAAAA,CACZ,CAAC,CAAEC,IAAAA,CAAAA,CAAAA,CAAO,MAAOC,CAASC,CAAAA,CAAAA,CAAAA,QAEZC,CAAAA,CAAAA,KAAAA,CAAQH,EACdC,CAAMG,CAAAA,MAAAA,CAASJ,GAIfK,GACI,CAAA,KAAA,CAAA,CAAAC,KAAM,CAAA,4BAAA,CACNC,KAAK,cACLC,CAAAA,OAAAA,CAAQ,cACRC,GAAKP,CAAAA,CAAAA,CAAAA,GACDD,EACJS,QAAAL,CAAAA,GAAAA,CAAA,OAAA,CAAMM,CAAAA,CAAE,gbAAR,CAAA,CALA,CAAA,CATU,CAAA,CAAA,CAmBpBC,EAAiBd,EACvBc,CAAAA,CAAeC,WAAc,CAAA,YAAA;;;;"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=require("react/jsx-runtime"),i=require("react");const l=i.forwardRef(({size:e=14,...r},s)=>(e&&(r.width=e,r.height=e),c.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 512 512",ref:s,...r,children:c.jsx("path",{d:"M490.3 40.4c21.9 21.87 21.9 57.33 0 79.2l-30 30.1-98-97.98 30.1-30.06c21.9-21.873 57.3-21.873 79.2 0l18.7 18.74zM172.4 241.7L339.7 74.34l98 97.96-167.4 167.3c-6.1 6.2-13.6 10.8-21.9 13.6l-88.8 29.6c-9.5 2.8-18.1.6-24.6-6.7-6.4-5.6-8.6-15.1-5.8-23.7l29.6-88.8c2.8-8.3 7.4-15.8 13.6-21.9zM192 63.1c17.7 0 32 15.23 32 32 0 18.6-14.3 32-32 32H96c-17.67 0-32 15.2-32 32V416c0 17.7 14.33 32 32 32h256c17.7 0 32-14.3 32-32v-96.9c0-16.8 14.3-32 32-32s32 15.2 32 32V416c0 53-43 96-96 96H96c-53.02 0-96-43-96-96V159.1c0-53 42.98-96 96-96h96z"})}))),t=l;t.displayName="PenToSquare";module.exports=t;
|
|
2
|
+
//# sourceMappingURL=PenToSquare.cjs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PenToSquare.cjs.js","sources":["../../src/components/PenToSquare.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M490.3 40.4c21.9 21.87 21.9 57.33 0 79.2l-30 30.1-98-97.98 30.1-30.06c21.9-21.873 57.3-21.873 79.2 0l18.7 18.74zM172.4 241.7L339.7 74.34l98 97.96-167.4 167.3c-6.1 6.2-13.6 10.8-21.9 13.6l-88.8 29.6c-9.5 2.8-18.1.6-24.6-6.7-6.4-5.6-8.6-15.1-5.8-23.7l29.6-88.8c2.8-8.3 7.4-15.8 13.6-21.9zM192 63.1c17.7 0 32 15.23 32 32 0 18.6-14.3 32-32 32H96c-17.67 0-32 15.2-32 32V416c0 17.7 14.33 32 32 32h256c17.7 0 32-14.3 32-32v-96.9c0-16.8 14.3-32 32-32s32 15.2 32 32V416c0 53-43 96-96 96H96c-53.02 0-96-43-96-96V159.1c0-53 42.98-96 96-96h96z\" />\n </svg>\n )\n }\n)\nconst PenToSquareIcon = SVGIcon\nPenToSquareIcon.displayName = 'PenToSquare'\nexport default PenToSquareIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","PenToSquareIcon","displayName"],"mappings":"mEAIMA,KAAUC,GAAAA,EAAAA,WACZ,CAAC,CAAEC,KAAAA,EAAO,MAAOC,GAASC,QAEZC,GAAAA,MAAQH,EACdC,EAAMG,OAASJ,GAIfK,EAAAA,IACI,MAAA,CAAAC,MAAM,6BACNC,KAAK,eACLC,QAAQ,cACRC,IAAKP,KACDD,EACJS,SAAAL,EAAAA,IAAA,OAAA,CAAMM,EAAE,qhBAAR,CAAA,CALA,CAAA,EATU,EAmBpBC,EAAkBd,EACxBc,EAAgBC,YAAc"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface CustomIconProps extends SVGProps<SVGSVGElement> {
|
|
3
|
+
size?: number;
|
|
4
|
+
}
|
|
5
|
+
declare const PenToSquareIcon: import("react").ForwardRefExoticComponent<Pick<CustomIconProps, "string" | "size" | "className" | "color" | "height" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "width" | "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" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "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" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "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-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"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
6
|
+
export default PenToSquareIcon;
|
|
7
|
+
//# sourceMappingURL=PenToSquare.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PenToSquare.d.ts","sourceRoot":"","sources":["../../src/components/PenToSquare.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,QAAQ,EAAE,MAAM,OAAO,CAAA;AAC5C,UAAU,eAAgB,SAAQ,QAAQ,CAAC,aAAa,CAAC;IACrD,IAAI,CAAC,EAAE,MAAM,CAAA;CAChB;AAoBD,QAAA,MAAM,eAAe,4lPAAU,CAAA;AAE/B,eAAe,eAAe,CAAA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
|
|
4
|
+
const n=forwardRef(({size:c=14,...r},e)=>(c&&(r.width=c,r.height=c),jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 512 512",ref:e,...r,children:jsx("path",{d:"M490.3 40.4c21.9 21.87 21.9 57.33 0 79.2l-30 30.1-98-97.98 30.1-30.06c21.9-21.873 57.3-21.873 79.2 0l18.7 18.74zM172.4 241.7L339.7 74.34l98 97.96-167.4 167.3c-6.1 6.2-13.6 10.8-21.9 13.6l-88.8 29.6c-9.5 2.8-18.1.6-24.6-6.7-6.4-5.6-8.6-15.1-5.8-23.7l29.6-88.8c2.8-8.3 7.4-15.8 13.6-21.9zM192 63.1c17.7 0 32 15.23 32 32 0 18.6-14.3 32-32 32H96c-17.67 0-32 15.2-32 32V416c0 17.7 14.33 32 32 32h256c17.7 0 32-14.3 32-32v-96.9c0-16.8 14.3-32 32-32s32 15.2 32 32V416c0 53-43 96-96 96H96c-53.02 0-96-43-96-96V159.1c0-53 42.98-96 96-96h96z"})}))),t=n;t.displayName="PenToSquare";
|
|
5
|
+
|
|
6
|
+
export { t as default };
|
|
7
|
+
//# sourceMappingURL=PenToSquare.es.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PenToSquare.es.js","sources":["../../src/components/PenToSquare.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M490.3 40.4c21.9 21.87 21.9 57.33 0 79.2l-30 30.1-98-97.98 30.1-30.06c21.9-21.873 57.3-21.873 79.2 0l18.7 18.74zM172.4 241.7L339.7 74.34l98 97.96-167.4 167.3c-6.1 6.2-13.6 10.8-21.9 13.6l-88.8 29.6c-9.5 2.8-18.1.6-24.6-6.7-6.4-5.6-8.6-15.1-5.8-23.7l29.6-88.8c2.8-8.3 7.4-15.8 13.6-21.9zM192 63.1c17.7 0 32 15.23 32 32 0 18.6-14.3 32-32 32H96c-17.67 0-32 15.2-32 32V416c0 17.7 14.33 32 32 32h256c17.7 0 32-14.3 32-32v-96.9c0-16.8 14.3-32 32-32s32 15.2 32 32V416c0 53-43 96-96 96H96c-53.02 0-96-43-96-96V159.1c0-53 42.98-96 96-96h96z\" />\n </svg>\n )\n }\n)\nconst PenToSquareIcon = SVGIcon\nPenToSquareIcon.displayName = 'PenToSquare'\nexport default PenToSquareIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","PenToSquareIcon","displayName"],"mappings":";;;AAIMA,MAAUC,CAAAA,CAAAA,UAAAA,CACZ,CAAC,CAAEC,IAAAA,CAAAA,CAAAA,CAAO,MAAOC,CAASC,CAAAA,CAAAA,CAAAA,QAEZC,CAAAA,CAAAA,KAAAA,CAAQH,EACdC,CAAMG,CAAAA,MAAAA,CAASJ,GAIfK,GACI,CAAA,KAAA,CAAA,CAAAC,KAAM,CAAA,4BAAA,CACNC,KAAK,cACLC,CAAAA,OAAAA,CAAQ,cACRC,GAAKP,CAAAA,CAAAA,CAAAA,GACDD,EACJS,QAAAL,CAAAA,GAAAA,CAAA,OAAA,CAAMM,CAAAA,CAAE,qhBAAR,CAAA,CALA,CAAA,CATU,CAAA,CAAA,CAmBpBC,EAAkBd,EACxBc,CAAAA,CAAgBC,WAAc,CAAA,aAAA;;;;"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var s=require("react/jsx-runtime"),i=require("react");const a=i.forwardRef(({size:e=14,...r},t)=>(e&&(r.width=e,r.height=e),s.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 512 512",ref:t,...r,children:s.jsx("path",{d:"M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 80c22.09 0 40 17.91 40 40s-17.9 40-40 40-40-17.9-40-40 17.9-40 40-40zm118.6 135.1L315.3 232c-3.7 1.1-7.5 1.6-11.3 2.4v62.32l30.64 87.34c4.391 12.5-2.188 26.19-14.69 30.59-2.65.95-5.35 1.35-7.95 1.35-9.906 0-19.19-6.188-22.64-16.06l-25.85-70.65c-2.562-7.002-12.46-7.002-15.03 0l-25.85 70.65C219.2 409.8 209.9 416 200 416c-2.641 0-5.312-.438-7.953-1.344-12.5-4.406-19.08-18.09-14.69-30.59L208 296.7v-62.3c-3.8-.8-7.6-1.3-11.3-2.4l-59.3-16.9c-12.7-3.7-20.1-16.9-16.5-29.7s17-20.2 29.7-16.5l59.25 16.94a167.931 167.931 0 0092.31 0l59.25-16.94c12.7-3.781 26.02 3.719 29.67 16.47 3.62 12.83-3.78 26.03-16.48 29.73z"})}))),c=a;c.displayName="UniversalAccess";module.exports=c;
|
|
2
|
+
//# sourceMappingURL=UniversalAccess.cjs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UniversalAccess.cjs.js","sources":["../../src/components/UniversalAccess.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 80c22.09 0 40 17.91 40 40s-17.9 40-40 40-40-17.9-40-40 17.9-40 40-40zm118.6 135.1L315.3 232c-3.7 1.1-7.5 1.6-11.3 2.4v62.32l30.64 87.34c4.391 12.5-2.188 26.19-14.69 30.59-2.65.95-5.35 1.35-7.95 1.35-9.906 0-19.19-6.188-22.64-16.06l-25.85-70.65c-2.562-7.002-12.46-7.002-15.03 0l-25.85 70.65C219.2 409.8 209.9 416 200 416c-2.641 0-5.312-.438-7.953-1.344-12.5-4.406-19.08-18.09-14.69-30.59L208 296.7v-62.3c-3.8-.8-7.6-1.3-11.3-2.4l-59.3-16.9c-12.7-3.7-20.1-16.9-16.5-29.7s17-20.2 29.7-16.5l59.25 16.94a167.931 167.931 0 0092.31 0l59.25-16.94c12.7-3.781 26.02 3.719 29.67 16.47 3.62 12.83-3.78 26.03-16.48 29.73z\" />\n </svg>\n )\n }\n)\nconst UniversalAccessIcon = SVGIcon\nUniversalAccessIcon.displayName = 'UniversalAccess'\nexport default UniversalAccessIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","UniversalAccessIcon","displayName"],"mappings":"mEAIMA,KAAUC,GAAAA,EAAAA,WACZ,CAAC,CAAEC,KAAAA,EAAO,MAAOC,GAASC,QAEZC,GAAAA,MAAQH,EACdC,EAAMG,OAASJ,GAIfK,EAAAA,IACI,MAAA,CAAAC,MAAM,6BACNC,KAAK,eACLC,QAAQ,cACRC,IAAKP,KACDD,EACJS,SAAAL,EAAAA,IAAA,OAAA,CAAMM,EAAE,orBAAR,CAAA,CALA,CAAA,EATU,EAmBpBC,EAAsBd,EAC5Bc,EAAoBC,YAAc"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface CustomIconProps extends SVGProps<SVGSVGElement> {
|
|
3
|
+
size?: number;
|
|
4
|
+
}
|
|
5
|
+
declare const UniversalAccessIcon: import("react").ForwardRefExoticComponent<Pick<CustomIconProps, "string" | "size" | "className" | "color" | "height" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "width" | "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" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "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" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "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-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"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
6
|
+
export default UniversalAccessIcon;
|
|
7
|
+
//# sourceMappingURL=UniversalAccess.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UniversalAccess.d.ts","sourceRoot":"","sources":["../../src/components/UniversalAccess.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,QAAQ,EAAE,MAAM,OAAO,CAAA;AAC5C,UAAU,eAAgB,SAAQ,QAAQ,CAAC,aAAa,CAAC;IACrD,IAAI,CAAC,EAAE,MAAM,CAAA;CAChB;AAoBD,QAAA,MAAM,mBAAmB,4lPAAU,CAAA;AAEnC,eAAe,mBAAmB,CAAA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
|
|
4
|
+
const o=forwardRef(({size:c=14,...l},t)=>(c&&(l.width=c,l.height=c),jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"currentColor",viewBox:"0 0 512 512",ref:t,...l,children:jsx("path",{d:"M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 80c22.09 0 40 17.91 40 40s-17.9 40-40 40-40-17.9-40-40 17.9-40 40-40zm118.6 135.1L315.3 232c-3.7 1.1-7.5 1.6-11.3 2.4v62.32l30.64 87.34c4.391 12.5-2.188 26.19-14.69 30.59-2.65.95-5.35 1.35-7.95 1.35-9.906 0-19.19-6.188-22.64-16.06l-25.85-70.65c-2.562-7.002-12.46-7.002-15.03 0l-25.85 70.65C219.2 409.8 209.9 416 200 416c-2.641 0-5.312-.438-7.953-1.344-12.5-4.406-19.08-18.09-14.69-30.59L208 296.7v-62.3c-3.8-.8-7.6-1.3-11.3-2.4l-59.3-16.9c-12.7-3.7-20.1-16.9-16.5-29.7s17-20.2 29.7-16.5l59.25 16.94a167.931 167.931 0 0092.31 0l59.25-16.94c12.7-3.781 26.02 3.719 29.67 16.47 3.62 12.83-3.78 26.03-16.48 29.73z"})}))),s=o;s.displayName="UniversalAccess";
|
|
5
|
+
|
|
6
|
+
export { s as default };
|
|
7
|
+
//# sourceMappingURL=UniversalAccess.es.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UniversalAccess.es.js","sources":["../../src/components/UniversalAccess.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n fill=\"currentColor\"\n viewBox=\"0 0 512 512\"\n ref={svgRef}\n {...props}>\n <path d=\"M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 80c22.09 0 40 17.91 40 40s-17.9 40-40 40-40-17.9-40-40 17.9-40 40-40zm118.6 135.1L315.3 232c-3.7 1.1-7.5 1.6-11.3 2.4v62.32l30.64 87.34c4.391 12.5-2.188 26.19-14.69 30.59-2.65.95-5.35 1.35-7.95 1.35-9.906 0-19.19-6.188-22.64-16.06l-25.85-70.65c-2.562-7.002-12.46-7.002-15.03 0l-25.85 70.65C219.2 409.8 209.9 416 200 416c-2.641 0-5.312-.438-7.953-1.344-12.5-4.406-19.08-18.09-14.69-30.59L208 296.7v-62.3c-3.8-.8-7.6-1.3-11.3-2.4l-59.3-16.9c-12.7-3.7-20.1-16.9-16.5-29.7s17-20.2 29.7-16.5l59.25 16.94a167.931 167.931 0 0092.31 0l59.25-16.94c12.7-3.781 26.02 3.719 29.67 16.47 3.62 12.83-3.78 26.03-16.48 29.73z\" />\n </svg>\n )\n }\n)\nconst UniversalAccessIcon = SVGIcon\nUniversalAccessIcon.displayName = 'UniversalAccess'\nexport default UniversalAccessIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","children","d","UniversalAccessIcon","displayName"],"mappings":";;;AAIMA,MAAUC,CAAAA,CAAAA,UAAAA,CACZ,CAAC,CAAEC,IAAAA,CAAAA,CAAAA,CAAO,MAAOC,CAASC,CAAAA,CAAAA,CAAAA,QAEZC,CAAAA,CAAAA,KAAAA,CAAQH,EACdC,CAAMG,CAAAA,MAAAA,CAASJ,GAIfK,GACI,CAAA,KAAA,CAAA,CAAAC,KAAM,CAAA,4BAAA,CACNC,KAAK,cACLC,CAAAA,OAAAA,CAAQ,cACRC,GAAKP,CAAAA,CAAAA,CAAAA,GACDD,EACJS,QAAAL,CAAAA,GAAAA,CAAA,OAAA,CAAMM,CAAAA,CAAE,orBAAR,CAAA,CALA,CAAA,CATU,CAAA,CAAA,CAmBpBC,EAAsBd,EAC5Bc,CAAAA,CAAoBC,WAAc,CAAA,iBAAA;;;;"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=require("react/jsx-runtime"),c=require("react");const a=c.forwardRef(({size:e=14,...r},s)=>(e&&(r.width=e,r.height=e),i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",width:10,height:8,fill:"none",viewBox:"0 0 10 8",ref:s,...r,children:i.jsx("path",{fill:"currentColor",d:"M0 3.377c.976-.633 1.873-.897 2.691-.897 1.715 0 2.85.87 4.565.87.818 0 1.741-.237 2.744-.896V0C8.997.66 8.074.897 7.256.897c-1.715 0-2.85-.87-4.565-.87C1.873.026.976.29 0 .922v2.454zM0 7.31c.976-.634 1.873-.897 2.691-.897 1.715 0 2.85.87 4.565.87.818 0 1.741-.237 2.744-.897V3.931c-1.003.66-1.926.897-2.744.897-1.715 0-2.85-.87-4.565-.87-.818 0-1.715.264-2.691.897v2.454z"})}))),t=a;t.displayName="WavyLines";module.exports=t;
|
|
2
|
+
//# sourceMappingURL=WavyLines.cjs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WavyLines.cjs.js","sources":["../../src/components/WavyLines.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={10}\n height={8}\n fill=\"none\"\n viewBox=\"0 0 10 8\"\n ref={svgRef}\n {...props}>\n <path\n fill=\"currentColor\"\n d=\"M0 3.377c.976-.633 1.873-.897 2.691-.897 1.715 0 2.85.87 4.565.87.818 0 1.741-.237 2.744-.896V0C8.997.66 8.074.897 7.256.897c-1.715 0-2.85-.87-4.565-.87C1.873.026.976.29 0 .922v2.454zM0 7.31c.976-.634 1.873-.897 2.691-.897 1.715 0 2.85.87 4.565.87.818 0 1.741-.237 2.744-.897V3.931c-1.003.66-1.926.897-2.744.897-1.715 0-2.85-.87-4.565-.87-.818 0-1.715.264-2.691.897v2.454z\"\n />\n </svg>\n )\n }\n)\nconst WavyLinesIcon = SVGIcon\nWavyLinesIcon.displayName = 'WavyLines'\nexport default WavyLinesIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","d","WavyLinesIcon","displayName"],"mappings":"mEAIMA,KAAUC,GAAAA,EAAAA,WACZ,CAAC,CAAEC,KAAAA,EAAO,MAAOC,GAASC,IAClBF,OACMG,MAAQH,EACdC,EAAMG,OAASJ,GAIfK,EAAAA,IACI,MAAA,CAAAC,MAAM,6BACNH,MAAO,GACPC,OAAQ,EACRG,KAAK,OACLC,QAAQ,WACRC,IAAKP,KACDD,WACJI,MACI,OAAA,CAAAE,KAAK,eACLG,EAAE,sXADF,CAAA,CARJ,CAAA,EATU,EAwBpBC,EAAgBb,EACtBa,EAAcC,YAAc"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface CustomIconProps extends SVGProps<SVGSVGElement> {
|
|
3
|
+
size?: number;
|
|
4
|
+
}
|
|
5
|
+
declare const WavyLinesIcon: import("react").ForwardRefExoticComponent<Pick<CustomIconProps, "string" | "size" | "className" | "color" | "height" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "style" | "target" | "type" | "width" | "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" | "clip" | "clipPath" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filter" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "mask" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "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" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "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-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"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
6
|
+
export default WavyLinesIcon;
|
|
7
|
+
//# sourceMappingURL=WavyLines.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WavyLines.d.ts","sourceRoot":"","sources":["../../src/components/WavyLines.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,QAAQ,EAAE,MAAM,OAAO,CAAA;AAC5C,UAAU,eAAgB,SAAQ,QAAQ,CAAC,aAAa,CAAC;IACrD,IAAI,CAAC,EAAE,MAAM,CAAA;CAChB;AAyBD,QAAA,MAAM,aAAa,4lPAAU,CAAA;AAE7B,eAAe,aAAa,CAAA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
|
|
4
|
+
const c=forwardRef(({size:t=14,...o},i)=>(t&&(o.width=t,o.height=t),jsx("svg",{xmlns:"http://www.w3.org/2000/svg",width:10,height:8,fill:"none",viewBox:"0 0 10 8",ref:i,...o,children:jsx("path",{fill:"currentColor",d:"M0 3.377c.976-.633 1.873-.897 2.691-.897 1.715 0 2.85.87 4.565.87.818 0 1.741-.237 2.744-.896V0C8.997.66 8.074.897 7.256.897c-1.715 0-2.85-.87-4.565-.87C1.873.026.976.29 0 .922v2.454zM0 7.31c.976-.634 1.873-.897 2.691-.897 1.715 0 2.85.87 4.565.87.818 0 1.741-.237 2.744-.897V3.931c-1.003.66-1.926.897-2.744.897-1.715 0-2.85-.87-4.565-.87-.818 0-1.715.264-2.691.897v2.454z"})}))),e=c;e.displayName="WavyLines";
|
|
5
|
+
|
|
6
|
+
export { e as default };
|
|
7
|
+
//# sourceMappingURL=WavyLines.es.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WavyLines.es.js","sources":["../../src/components/WavyLines.tsx"],"sourcesContent":["import { forwardRef, SVGProps } from 'react'\ninterface CustomIconProps extends SVGProps<SVGSVGElement> {\n size?: number\n}\nconst SVGIcon = forwardRef<SVGSVGElement, CustomIconProps>(\n ({ size = 14, ...props }, svgRef) => {\n if (size) {\n props.width = size\n props.height = size\n }\n\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={10}\n height={8}\n fill=\"none\"\n viewBox=\"0 0 10 8\"\n ref={svgRef}\n {...props}>\n <path\n fill=\"currentColor\"\n d=\"M0 3.377c.976-.633 1.873-.897 2.691-.897 1.715 0 2.85.87 4.565.87.818 0 1.741-.237 2.744-.896V0C8.997.66 8.074.897 7.256.897c-1.715 0-2.85-.87-4.565-.87C1.873.026.976.29 0 .922v2.454zM0 7.31c.976-.634 1.873-.897 2.691-.897 1.715 0 2.85.87 4.565.87.818 0 1.741-.237 2.744-.897V3.931c-1.003.66-1.926.897-2.744.897-1.715 0-2.85-.87-4.565-.87-.818 0-1.715.264-2.691.897v2.454z\"\n />\n </svg>\n )\n }\n)\nconst WavyLinesIcon = SVGIcon\nWavyLinesIcon.displayName = 'WavyLines'\nexport default WavyLinesIcon\n"],"names":["SVGIcon","forwardRef","size","props","svgRef","width","height","_jsx","xmlns","fill","viewBox","ref","d","WavyLinesIcon","displayName"],"mappings":";;;AAIMA,MAAUC,CAAAA,CAAAA,UAAAA,CACZ,CAAC,CAAEC,IAAAA,CAAAA,CAAAA,CAAO,EAAOC,CAAAA,GAAAA,CAAAA,CAAAA,CAASC,CAClBF,IAAAA,CAAAA,KACMG,KAAQH,CAAAA,CAAAA,CACdC,CAAMG,CAAAA,MAAAA,CAASJ,CAIfK,CAAAA,CAAAA,GAAAA,CACI,MAAA,CAAAC,KAAAA,CAAM,4BACNH,CAAAA,KAAAA,CAAO,EACPC,CAAAA,MAAAA,CAAQ,EACRG,IAAK,CAAA,MAAA,CACLC,OAAQ,CAAA,UAAA,CACRC,GAAKP,CAAAA,CAAAA,CAAAA,GACDD,UACJI,CAAAA,GAAAA,CACI,MAAA,CAAA,CAAAE,IAAK,CAAA,cAAA,CACLG,EAAE,sXADF,CAAA,CARJ,CAAA,CATU,CAAA,CAAA,CAwBpBC,EAAgBb,EACtBa,CAAAA,CAAcC,WAAc,CAAA,WAAA;;;;"}
|
|
@@ -24,6 +24,7 @@ export { default as CircleXmark } from './CircleXmark';
|
|
|
24
24
|
export { default as Circle } from './Circle';
|
|
25
25
|
export { default as ClockRotateLeft } from './ClockRotateLeft';
|
|
26
26
|
export { default as CloudArrowUp } from './CloudArrowUp';
|
|
27
|
+
export { default as Code } from './Code';
|
|
27
28
|
export { default as CommentDots } from './CommentDots';
|
|
28
29
|
export { default as Cubes } from './Cubes';
|
|
29
30
|
export { default as DownLeftAndUpRightToCenter } from './DownLeftAndUpRightToCenter';
|
|
@@ -34,6 +35,7 @@ export { default as Envelope } from './Envelope';
|
|
|
34
35
|
export { default as Equals } from './Equals';
|
|
35
36
|
export { default as EyeSlash } from './EyeSlash';
|
|
36
37
|
export { default as Eye } from './Eye';
|
|
38
|
+
export { default as FileExport } from './FileExport';
|
|
37
39
|
export { default as FileLines } from './FileLines';
|
|
38
40
|
export { default as FilePdf } from './FilePdf';
|
|
39
41
|
export { default as Filter } from './Filter';
|
|
@@ -49,6 +51,7 @@ export { default as LocationDot } from './LocationDot';
|
|
|
49
51
|
export { default as MagnifyingGlass } from './MagnifyingGlass';
|
|
50
52
|
export { default as Minus } from './Minus';
|
|
51
53
|
export { default as Paragraph } from './Paragraph';
|
|
54
|
+
export { default as PenToSquare } from './PenToSquare';
|
|
52
55
|
export { default as Pencil } from './Pencil';
|
|
53
56
|
export { default as Plus } from './Plus';
|
|
54
57
|
export { default as RotateLeft } from './RotateLeft';
|
|
@@ -56,6 +59,8 @@ export { default as Spinner } from './Spinner';
|
|
|
56
59
|
export { default as Tag } from './Tag';
|
|
57
60
|
export { default as TrashCan } from './TrashCan';
|
|
58
61
|
export { default as TriangleExclamation } from './TriangleExclamation';
|
|
62
|
+
export { default as UniversalAccess } from './UniversalAccess';
|
|
59
63
|
export { default as UpRightAndDownLeftFromCenter } from './UpRightAndDownLeftFromCenter';
|
|
64
|
+
export { default as WavyLines } from './WavyLines';
|
|
60
65
|
export { default as Xmark } from './Xmark';
|
|
61
66
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.tsx"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAA;AAClD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAA;AAClD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAA;AAClD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAA;AAC9C,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AACpE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAA;AAClD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAA;AAClD,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAC1E,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AACtE,OAAO,EAAE,OAAO,IAAI,sBAAsB,EAAE,MAAM,0BAA0B,CAAA;AAC5E,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAChE,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAA;AAC9C,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAA;AACxD,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAA;AACxC,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAA;AACxC,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAA;AAC1C,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAA;AAC5C,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAC9D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAA;AACxD,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAA;AACxC,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAA;AAC1C,OAAO,EAAE,OAAO,IAAI,0BAA0B,EAAE,MAAM,8BAA8B,CAAA;AACpF,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAChE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAA;AAChD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAA;AAChD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAA;AAC5C,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAA;AAChD,OAAO,EAAE,OAAO,IAAI,GAAG,EAAE,MAAM,OAAO,CAAA;AACtC,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAA;AAClD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAA;AAC9C,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAA;AAC5C,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAA;AAC5C,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAA;AAClD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAA;AAC9C,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAA;AAClD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAA;AACxC,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAC9D,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAA;AAC1C,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAA;AAClD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAA;AAC5C,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAA;AACxC,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAA;AAC9C,OAAO,EAAE,OAAO,IAAI,GAAG,EAAE,MAAM,OAAO,CAAA;AACtC,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAA;AAChD,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AACtE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAC9D,OAAO,EAAE,OAAO,IAAI,4BAA4B,EAAE,MAAM,gCAAgC,CAAA;AACxF,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAA;AAClD,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAA"}
|
package/dist/index.cjs.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});var r=require("./components/AlignLeft.cjs.js"),e=require("./components/AngleDown.cjs.js"),o=require("./components/AngleLeft.cjs.js"),s=require("./components/AngleRight.cjs.js"),n=require("./components/AngleUp.cjs.js"),i=require("./components/ArrowDownAZ.cjs.js"),c=require("./components/ArrowDownWideShort.cjs.js"),t=require("./components/ArrowDownZA.cjs.js"),a=require("./components/ArrowDown.cjs.js"),j=require("./components/ArrowLeft.cjs.js"),p=require("./components/ArrowRightFromBracket.cjs.js"),l=require("./components/ArrowRightToBracket.cjs.js"),u=require("./components/ArrowUpRightFromSquare.cjs.js"),m=require("./components/ArrowUpWideShort.cjs.js"),
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});var r=require("./components/AlignLeft.cjs.js"),e=require("./components/AngleDown.cjs.js"),o=require("./components/AngleLeft.cjs.js"),s=require("./components/AngleRight.cjs.js"),n=require("./components/AngleUp.cjs.js"),i=require("./components/ArrowDownAZ.cjs.js"),c=require("./components/ArrowDownWideShort.cjs.js"),t=require("./components/ArrowDownZA.cjs.js"),a=require("./components/ArrowDown.cjs.js"),j=require("./components/ArrowLeft.cjs.js"),p=require("./components/ArrowRightFromBracket.cjs.js"),l=require("./components/ArrowRightToBracket.cjs.js"),u=require("./components/ArrowUpRightFromSquare.cjs.js"),m=require("./components/ArrowUpWideShort.cjs.js"),v=require("./components/ArrowUp.cjs.js"),q=require("./components/ArrowsUpDown.cjs.js"),A=require("./components/Bars.cjs.js"),w=require("./components/Book.cjs.js"),g=require("./components/CalendarAlt.cjs.js"),C=require("./components/Check.cjs.js"),h=require("./components/CircleCheck.cjs.js"),L=require("./components/CircleInfo.cjs.js"),d=require("./components/CircleXmark.cjs.js"),D=require("./components/Circle.cjs.js"),f=require("./components/ClockRotateLeft.cjs.js"),k=require("./components/CloudArrowUp.cjs.js"),F=require("./components/Code.cjs.js"),U=require("./components/CommentDots.cjs.js"),E=require("./components/Cubes.cjs.js"),R=require("./components/DownLeftAndUpRightToCenter.cjs.js"),y=require("./components/DrawPolygon.cjs.js"),S=require("./components/EllipsisVertical.cjs.js"),P=require("./components/Ellipsis.cjs.js"),T=require("./components/Envelope.cjs.js"),B=require("./components/Equals.cjs.js"),G=require("./components/EyeSlash.cjs.js"),W=require("./components/Eye.cjs.js"),M=require("./components/FileExport.cjs.js"),x=require("./components/FileLines.cjs.js"),H=require("./components/FilePdf.cjs.js"),X=require("./components/Filter.cjs.js"),Z=require("./components/FloppyDisk.cjs.js"),b=require("./components/FolderOpen.cjs.js"),O=require("./components/Folder.cjs.js"),I=require("./components/GripLines.cjs.js"),V=require("./components/Heading.cjs.js"),_=require("./components/Hourglass.cjs.js"),z=require("./components/LayerGroup.cjs.js"),J=require("./components/Link.cjs.js"),K=require("./components/LocationDot.cjs.js"),N=require("./components/MagnifyingGlass.cjs.js"),Q=require("./components/Minus.cjs.js"),Y=require("./components/Paragraph.cjs.js"),$=require("./components/PenToSquare.cjs.js"),rr=require("./components/Pencil.cjs.js"),er=require("./components/Plus.cjs.js"),or=require("./components/RotateLeft.cjs.js"),sr=require("./components/Spinner.cjs.js"),nr=require("./components/Tag.cjs.js"),ir=require("./components/TrashCan.cjs.js"),cr=require("./components/TriangleExclamation.cjs.js"),tr=require("./components/UniversalAccess.cjs.js"),ar=require("./components/UpRightAndDownLeftFromCenter.cjs.js"),jr=require("./components/WavyLines.cjs.js"),pr=require("./components/Xmark.cjs.js");exports.AlignLeft=r;exports.AngleDown=e;exports.AngleLeft=o;exports.AngleRight=s;exports.AngleUp=n;exports.ArrowDownAZ=i;exports.ArrowDownWideShort=c;exports.ArrowDownZA=t;exports.ArrowDown=a;exports.ArrowLeft=j;exports.ArrowRightFromBracket=p;exports.ArrowRightToBracket=l;exports.ArrowUpRightFromSquare=u;exports.ArrowUpWideShort=m;exports.ArrowUp=v;exports.ArrowsUpDown=q;exports.Bars=A;exports.Book=w;exports.CalendarAlt=g;exports.Check=C;exports.CircleCheck=h;exports.CircleInfo=L;exports.CircleXmark=d;exports.Circle=D;exports.ClockRotateLeft=f;exports.CloudArrowUp=k;exports.Code=F;exports.CommentDots=U;exports.Cubes=E;exports.DownLeftAndUpRightToCenter=R;exports.DrawPolygon=y;exports.EllipsisVertical=S;exports.Ellipsis=P;exports.Envelope=T;exports.Equals=B;exports.EyeSlash=G;exports.Eye=W;exports.FileExport=M;exports.FileLines=x;exports.FilePdf=H;exports.Filter=X;exports.FloppyDisk=Z;exports.FolderOpen=b;exports.Folder=O;exports.GripLines=I;exports.Heading=V;exports.Hourglass=_;exports.LayerGroup=z;exports.Link=J;exports.LocationDot=K;exports.MagnifyingGlass=N;exports.Minus=Q;exports.Paragraph=Y;exports.PenToSquare=$;exports.Pencil=rr;exports.Plus=er;exports.RotateLeft=or;exports.Spinner=sr;exports.Tag=nr;exports.TrashCan=ir;exports.TriangleExclamation=cr;exports.UniversalAccess=tr;exports.UpRightAndDownLeftFromCenter=ar;exports.WavyLines=jr;exports.Xmark=pr;
|
|
2
2
|
//# sourceMappingURL=index.cjs.js.map
|
package/dist/index.es.js
CHANGED
|
@@ -24,6 +24,7 @@ export { default as CircleXmark } from './components/CircleXmark.es.js';
|
|
|
24
24
|
export { default as Circle } from './components/Circle.es.js';
|
|
25
25
|
export { default as ClockRotateLeft } from './components/ClockRotateLeft.es.js';
|
|
26
26
|
export { default as CloudArrowUp } from './components/CloudArrowUp.es.js';
|
|
27
|
+
export { default as Code } from './components/Code.es.js';
|
|
27
28
|
export { default as CommentDots } from './components/CommentDots.es.js';
|
|
28
29
|
export { default as Cubes } from './components/Cubes.es.js';
|
|
29
30
|
export { default as DownLeftAndUpRightToCenter } from './components/DownLeftAndUpRightToCenter.es.js';
|
|
@@ -34,6 +35,7 @@ export { default as Envelope } from './components/Envelope.es.js';
|
|
|
34
35
|
export { default as Equals } from './components/Equals.es.js';
|
|
35
36
|
export { default as EyeSlash } from './components/EyeSlash.es.js';
|
|
36
37
|
export { default as Eye } from './components/Eye.es.js';
|
|
38
|
+
export { default as FileExport } from './components/FileExport.es.js';
|
|
37
39
|
export { default as FileLines } from './components/FileLines.es.js';
|
|
38
40
|
export { default as FilePdf } from './components/FilePdf.es.js';
|
|
39
41
|
export { default as Filter } from './components/Filter.es.js';
|
|
@@ -49,6 +51,7 @@ export { default as LocationDot } from './components/LocationDot.es.js';
|
|
|
49
51
|
export { default as MagnifyingGlass } from './components/MagnifyingGlass.es.js';
|
|
50
52
|
export { default as Minus } from './components/Minus.es.js';
|
|
51
53
|
export { default as Paragraph } from './components/Paragraph.es.js';
|
|
54
|
+
export { default as PenToSquare } from './components/PenToSquare.es.js';
|
|
52
55
|
export { default as Pencil } from './components/Pencil.es.js';
|
|
53
56
|
export { default as Plus } from './components/Plus.es.js';
|
|
54
57
|
export { default as RotateLeft } from './components/RotateLeft.es.js';
|
|
@@ -56,6 +59,8 @@ export { default as Spinner } from './components/Spinner.es.js';
|
|
|
56
59
|
export { default as Tag } from './components/Tag.es.js';
|
|
57
60
|
export { default as TrashCan } from './components/TrashCan.es.js';
|
|
58
61
|
export { default as TriangleExclamation } from './components/TriangleExclamation.es.js';
|
|
62
|
+
export { default as UniversalAccess } from './components/UniversalAccess.es.js';
|
|
59
63
|
export { default as UpRightAndDownLeftFromCenter } from './components/UpRightAndDownLeftFromCenter.es.js';
|
|
64
|
+
export { default as WavyLines } from './components/WavyLines.es.js';
|
|
60
65
|
export { default as Xmark } from './components/Xmark.es.js';
|
|
61
66
|
//# sourceMappingURL=index.es.js.map
|
package/dist/index.es.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.es.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.es.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pzh-ui/icons",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"description": "Contains icons to use in Provincie Zuid-Holland projects.",
|
|
5
5
|
"homepage": "https://github.com/Provincie-Zuid-Holland/pzh-ui#readme",
|
|
6
6
|
"license": "ISC",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"typescript": "^4.6.2",
|
|
48
48
|
"vite": "^2.8.6"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "2b97bb86a314289628d6cfb0e42ac291f6c659bc"
|
|
51
51
|
}
|