@codecademy/gamut-icons 9.50.1-alpha.f1251e.0 → 9.51.0-alpha.3f584e.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.
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Svg } from '../../props';
|
|
3
|
+
import { useIconId } from '../../useIconId';
|
|
4
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
5
|
+
export const LiveVideoIcon = /*#__PURE__*/React.forwardRef(({
|
|
6
|
+
title,
|
|
7
|
+
titleId,
|
|
8
|
+
size = 16,
|
|
9
|
+
height = size,
|
|
10
|
+
width = size,
|
|
11
|
+
...props
|
|
12
|
+
}, svgRef) => {
|
|
13
|
+
const maskId = useIconId('LiveVideoIcon');
|
|
14
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
15
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
fill: "#fff",
|
|
18
|
+
role: "img",
|
|
19
|
+
"aria-hidden": "true",
|
|
20
|
+
"pointer-events": "none",
|
|
21
|
+
width: width,
|
|
22
|
+
height: height,
|
|
23
|
+
ref: svgRef,
|
|
24
|
+
"aria-labelledby": titleId,
|
|
25
|
+
...props,
|
|
26
|
+
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
27
|
+
id: titleId,
|
|
28
|
+
children: title
|
|
29
|
+
}) : null, /*#__PURE__*/_jsx("mask", {
|
|
30
|
+
id: `${maskId}`,
|
|
31
|
+
children: /*#__PURE__*/_jsxs("g", {
|
|
32
|
+
fill: "none",
|
|
33
|
+
strokeLinecap: "round",
|
|
34
|
+
strokeLinejoin: "round",
|
|
35
|
+
stroke: "#fff",
|
|
36
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
37
|
+
d: "M8 13.313A4.812 4.812 0 0012.813 8.5a4.812 4.812 0 10-9.626 0A4.812 4.812 0 008 13.313zm0 0",
|
|
38
|
+
transform: "scale(1.5 1.47059)",
|
|
39
|
+
strokeMiterlimit: 10
|
|
40
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
41
|
+
d: "M1.148 8.5c0-.81.141-1.588.399-2.31m0 4.62A6.854 6.854 0 0014.852 8.5a6.855 6.855 0 00-3.487-5.971M2.74 4.112a6.841 6.841 0 011.768-1.506M6.81 1.75a7.035 7.035 0 012.38 0",
|
|
42
|
+
transform: "scale(1.5 1.47059)",
|
|
43
|
+
strokeMiterlimit: 10
|
|
44
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
45
|
+
d: "M6.458 10.253V6.747c0-.492.542-.789.959-.529l2.789 1.753c.39.245.39.813 0 1.058l-2.79 1.753a.625.625 0 01-.958-.529zm0 0",
|
|
46
|
+
transform: "scale(1.5 1.47059)"
|
|
47
|
+
})]
|
|
48
|
+
})
|
|
49
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
50
|
+
mask: `url(#${maskId})`,
|
|
51
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
52
|
+
width: `100%`,
|
|
53
|
+
height: `100%`,
|
|
54
|
+
fill: `currentColor`
|
|
55
|
+
})
|
|
56
|
+
})]
|
|
57
|
+
});
|
|
58
|
+
});
|
|
@@ -164,6 +164,7 @@ export * from './LinkedinIcon';
|
|
|
164
164
|
export * from './LinkedinOutlineIcon';
|
|
165
165
|
export * from './ListIcon';
|
|
166
166
|
export * from './ListeningIcon';
|
|
167
|
+
export * from './LiveVideoIcon';
|
|
167
168
|
export * from './LocationPinIcon';
|
|
168
169
|
export * from './LockHeavyIcon';
|
|
169
170
|
export * from './LockIcon';
|
|
@@ -164,6 +164,7 @@ export * from './LinkedinIcon';
|
|
|
164
164
|
export * from './LinkedinOutlineIcon';
|
|
165
165
|
export * from './ListIcon';
|
|
166
166
|
export * from './ListeningIcon';
|
|
167
|
+
export * from './LiveVideoIcon';
|
|
167
168
|
export * from './LocationPinIcon';
|
|
168
169
|
export * from './LockHeavyIcon';
|
|
169
170
|
export * from './LockIcon';
|
package/dist/props.d.ts
CHANGED
|
@@ -710,5 +710,5 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
710
710
|
}>;
|
|
711
711
|
} & {
|
|
712
712
|
theme?: import("@emotion/react").Theme | undefined;
|
|
713
|
-
}, Pick<import("react").SVGProps<SVGSVGElement>, "string" | "scale" | "filter" | "fill" | "values" | "spacing" | "
|
|
713
|
+
}, Pick<import("react").SVGProps<SVGSVGElement>, "string" | "scale" | "filter" | "fill" | "values" | "spacing" | "clipPath" | "cursor" | "direction" | "fontSizeAdjust" | "fontStretch" | "fontVariant" | "imageRendering" | "paintOrder" | "pointerEvents" | "rotate" | "textRendering" | "transform" | "unicodeBidi" | "visibility" | "wordSpacing" | "writingMode" | "mask" | "offset" | "min" | "max" | "end" | "clip" | "suppressHydrationWarning" | "className" | "id" | "lang" | "media" | "method" | "name" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "fillOpacity" | "fillRule" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mathematical" | "numOctaves" | "operator" | "orient" | "orientation" | "origin" | "overlinePosition" | "overlineThickness" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "shapeRendering" | "slope" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "ref" | "key">, {}>;
|
|
714
714
|
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
|
|
3
|
+
<g id="surface1">
|
|
4
|
+
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 8 13.313125 C 10.658854 13.313125 12.8125 11.158906 12.8125 8.5 C 12.8125 5.841094 10.658854 3.686875 8 3.686875 C 5.341146 3.686875 3.1875 5.841094 3.1875 8.5 C 3.1875 11.158906 5.341146 13.313125 8 13.313125 Z M 8 13.313125 " transform="matrix(1.5,0,0,1.470588,0,0)"/>
|
|
5
|
+
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1.148438 8.5 C 1.148438 7.689844 1.289062 6.911562 1.546875 6.189062 M 1.546875 10.810937 C 2.494792 13.459219 5.026042 15.353125 8 15.353125 C 11.783854 15.353125 14.851562 12.285156 14.851562 8.5 C 14.851562 5.939375 13.445312 3.705469 11.364583 2.52875 M 2.739583 4.111875 C 3.236979 3.514219 3.835938 3.004219 4.507812 2.605781 M 6.809896 1.750469 C 7.197917 1.684062 7.59375 1.649531 8 1.649531 C 8.40625 1.649531 8.804688 1.684062 9.190104 1.750469 " transform="matrix(1.5,0,0,1.470588,0,0)"/>
|
|
6
|
+
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 6.458333 10.253125 L 6.458333 6.746875 C 6.458333 6.255469 7 5.957969 7.416667 6.218281 L 10.205729 7.971406 C 10.596354 8.215781 10.596354 8.784219 10.205729 9.028594 L 7.416667 10.781719 C 7 11.044687 6.458333 10.744531 6.458333 10.253125 Z M 6.458333 10.253125 " transform="matrix(1.5,0,0,1.470588,0,0)"/>
|
|
7
|
+
</g>
|
|
8
|
+
</svg>
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-icons",
|
|
3
3
|
"description": "Icon library for codecademy.com",
|
|
4
|
-
"version": "9.
|
|
4
|
+
"version": "9.51.0-alpha.3f584e.0",
|
|
5
5
|
"author": "Codecademy <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/gamut-styles": "17.
|
|
8
|
-
"@codecademy/variance": "0.24.
|
|
7
|
+
"@codecademy/gamut-styles": "17.9.0",
|
|
8
|
+
"@codecademy/variance": "0.24.0"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist"
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"types": "dist/index.d.ts",
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "8bb803ee3daea5749a670d1349dde83c1e035e24"
|
|
33
33
|
}
|