sag_components 1.0.5 → 1.0.6

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,34 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.InfoIcon = void 0;
7
+ var InfoIcon = function InfoIcon(_ref) {
8
+ var clicked = _ref.clicked;
9
+ return /*#__PURE__*/React.createElement("svg", {
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ viewBox: "0 0 24 24",
12
+ fill: "none",
13
+ stroke: clicked ? "white" : "black",
14
+ strokeWidth: "2",
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round",
17
+ className: "feather feather-info"
18
+ }, /*#__PURE__*/React.createElement("circle", {
19
+ cx: "12",
20
+ cy: "12",
21
+ r: "10"
22
+ }), /*#__PURE__*/React.createElement("line", {
23
+ x1: "12",
24
+ y1: "16",
25
+ x2: "12",
26
+ y2: "12"
27
+ }), /*#__PURE__*/React.createElement("line", {
28
+ x1: "12",
29
+ y1: "8",
30
+ x2: "12",
31
+ y2: "8"
32
+ }));
33
+ };
34
+ exports.InfoIcon = InfoIcon;
@@ -10,7 +10,7 @@ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/esm
10
10
  var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
11
11
  var _react = _interopRequireWildcard(require("react"));
12
12
  var _OneColumnContainer = require("../OneColumnContainer.style");
13
- var _InfoIcon = require("../InfoIcon");
13
+ var _InfoIcon = require("./InfoIcon");
14
14
  var _excluded = ["width", "height", "infoText"];
15
15
  /**
16
16
  * Primary UI component for user interaction
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sag_components",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { useState } from "react";
3
3
  import { InfoTextLabel,InfoTextContainer,IconContainer, StyledContainer } from '../OneColumnContainer.style';
4
- import { InfoIcon } from "../InfoIcon";
4
+ import { InfoIcon } from "./InfoIcon";
5
5
 
6
6
  /**
7
7
  * Primary UI component for user interaction