@app-studio/web 0.9.45 → 0.9.46

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,6 +1,6 @@
1
1
  import { ViewProps } from 'app-studio';
2
2
  import React from 'react';
3
- export interface IconProps extends ViewProps {
3
+ export interface IconProps extends Omit<ViewProps, 'orientation'> {
4
4
  color?: string;
5
5
  filled?: boolean;
6
6
  orientation?: 'left' | 'right' | 'up' | 'down';
@@ -94,3 +94,4 @@ export declare const ShieldIcon: React.FC<IconProps>;
94
94
  export declare const CheckIcon: React.FC<IconProps>;
95
95
  export declare const LogoutIcon: React.FC<IconProps>;
96
96
  export declare const PowerOffIcon: React.FC<IconProps>;
97
+ export declare const BackIcon: (props: any) => React.JSX.Element;
@@ -2849,6 +2849,9 @@ var PowerOffIcon = _ref87 => {
2849
2849
  d: "M6.8 6.8a8 8 0 1 0 10 0"
2850
2850
  })));
2851
2851
  };
2852
+ var BackIcon = props => (/*#__PURE__*/React__default.createElement(ChevronIcon, Object.assign({
2853
+ orientation: "left"
2854
+ }, props)));
2852
2855
 
2853
2856
  var Icon = {
2854
2857
  __proto__: null,
@@ -2940,7 +2943,8 @@ var Icon = {
2940
2943
  ShieldIcon: ShieldIcon,
2941
2944
  CheckIcon: CheckIcon,
2942
2945
  LogoutIcon: LogoutIcon,
2943
- PowerOffIcon: PowerOffIcon
2946
+ PowerOffIcon: PowerOffIcon,
2947
+ BackIcon: BackIcon
2944
2948
  };
2945
2949
 
2946
2950
  /**
@@ -27908,6 +27912,7 @@ exports.AudioIcon = AudioIcon;
27908
27912
  exports.AudioInput = AudioInput;
27909
27913
  exports.AudioWaveform = AudioWaveform;
27910
27914
  exports.Avatar = Avatar;
27915
+ exports.BackIcon = BackIcon;
27911
27916
  exports.Background = Background;
27912
27917
  exports.Badge = Badge;
27913
27918
  exports.BatteryIcon = BatteryIcon;