@ornikar/kitt-universal 9.46.2 → 9.47.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.
@@ -1,5 +1,5 @@
1
1
  import { forwardRef, useContext, createContext, cloneElement, useState, useRef, useEffect, useMemo, Children, useReducer, Fragment as Fragment$1 } from 'react';
2
- import { View as View$1, ScrollView as ScrollView$1, Pressable as Pressable$1, Image as Image$1, FlatList as FlatList$1, SectionList as SectionList$1, Stack as Stack$1, VStack as VStack$1, HStack as HStack$1, Center as Center$1, useBreakpointValue, Text, Input, NativeBaseProvider, extendTheme } from 'native-base';
2
+ import { View as View$1, ScrollView as ScrollView$1, Pressable as Pressable$1, Image as Image$1, FlatList as FlatList$1, SectionList as SectionList$1, Stack as Stack$1, VStack as VStack$1, HStack as HStack$1, Center as Center$1, useBreakpointValue, Text, Input, useSx, NativeBaseProvider, extendTheme } from 'native-base';
3
3
  export { useBreakpointValue, useClipboard, useSx, useToken } from 'native-base';
4
4
  import styled$1, { useTheme, css, ThemeProvider } from 'styled-components/native';
5
5
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
@@ -3683,7 +3683,7 @@ ListItem.SideContainer = ListItemSideContainer;
3683
3683
 
3684
3684
  var SvgMarkerLargeinline = function SvgMarkerLargeinline(props) {
3685
3685
  return /*#__PURE__*/jsxs("svg", _objectSpread(_objectSpread({
3686
- fill: "none",
3686
+ fill: "currentColor",
3687
3687
  viewBox: "0 0 54 56",
3688
3688
  width: 54,
3689
3689
  xmlns: "http://www.w3.org/2000/svg"
@@ -3755,7 +3755,7 @@ var SvgMarkerLargeinline = function SvgMarkerLargeinline(props) {
3755
3755
  var SvgMarkerinline = function SvgMarkerinline(props) {
3756
3756
  return /*#__PURE__*/jsxs("svg", _objectSpread(_objectSpread({
3757
3757
  viewBox: "0 0 40 39",
3758
- fill: "none",
3758
+ fill: "currentColor",
3759
3759
  xmlns: "http://www.w3.org/2000/svg"
3760
3760
  }, props), {}, {
3761
3761
  children: [/*#__PURE__*/jsx("path", {
@@ -3879,20 +3879,34 @@ function MapMarkerSimple(_ref) {
3879
3879
  var _ref$width = _ref.width,
3880
3880
  width = _ref$width === void 0 ? 40 : _ref$width,
3881
3881
  _ref$height = _ref.height,
3882
- height = _ref$height === void 0 ? 39 : _ref$height;
3882
+ height = _ref$height === void 0 ? 39 : _ref$height,
3883
+ _ref$color = _ref.color,
3884
+ color = _ref$color === void 0 ? lateOceanColorPalette.lateOcean : _ref$color;
3885
+ var sx = useSx();
3886
+ var styles = sx({
3887
+ color: color
3888
+ });
3883
3889
  return /*#__PURE__*/jsx(SvgMarkerinline, {
3884
3890
  width: width,
3885
- height: height
3891
+ height: height,
3892
+ color: styles.color
3886
3893
  });
3887
3894
  }
3888
3895
  function MapMarkerLarge(_ref2) {
3889
3896
  var _ref2$width = _ref2.width,
3890
3897
  width = _ref2$width === void 0 ? 54 : _ref2$width,
3891
3898
  _ref2$height = _ref2.height,
3892
- height = _ref2$height === void 0 ? 56 : _ref2$height;
3899
+ height = _ref2$height === void 0 ? 56 : _ref2$height,
3900
+ _ref2$color = _ref2.color,
3901
+ color = _ref2$color === void 0 ? lateOceanColorPalette.lateOcean : _ref2$color;
3902
+ var sx = useSx();
3903
+ var styles = sx({
3904
+ color: color
3905
+ });
3893
3906
  return /*#__PURE__*/jsx(SvgMarkerLargeinline, {
3894
3907
  width: width,
3895
- height: height
3908
+ height: height,
3909
+ color: styles.color
3896
3910
  });
3897
3911
  }
3898
3912
  function MapMarkerPosition(_ref3) {