@sinco/react 1.1.2-rc.65 → 1.1.2-rc.67

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/index.esm.js CHANGED
@@ -14643,6 +14643,22 @@ const PageHeader = ({
14643
14643
  }, actions))));
14644
14644
  };
14645
14645
 
14646
+ var IconSvg = "9bbea60ac8f56ee6.svg";
14647
+
14648
+ const FontIcons = ({
14649
+ iconName: _iconName = 'sinco-document-check',
14650
+ size: _size = 'medium'
14651
+ }) => {
14652
+ return /*#__PURE__*/React__default.createElement(Stack$1, null, /*#__PURE__*/React__default.createElement("svg", {
14653
+ style: {
14654
+ width: _size === 'small' ? 50 : _size === 'medium' ? 100 : _size === 'large' ? 200 : 50,
14655
+ height: _size === 'small' ? 50 : _size === 'medium' ? 100 : _size === 'large' ? 200 : 50
14656
+ }
14657
+ }, /*#__PURE__*/React__default.createElement("use", {
14658
+ xlinkHref: `${IconSvg}#${_iconName}`
14659
+ })));
14660
+ };
14661
+
14646
14662
  var global$6 = global$i;
14647
14663
  var classof$3 = classofRaw$2;
14648
14664
 
@@ -20158,4 +20174,4 @@ const useDynamicColor = url => {
20158
20174
  };
20159
20175
  };
20160
20176
 
20161
- export { AdproSincoTheme, DrawerComponent as Drawer, DrawerComponent, DynamicColor, EmptyState, EmptyStateImageUrls, FooterAction, PageHeader, PageHeaderWraps, SincoTheme, ToastNotification, useDynamicColor };
20177
+ export { AdproSincoTheme, DrawerComponent as Drawer, DrawerComponent, DynamicColor, EmptyState, EmptyStateImageUrls, FontIcons, FooterAction, PageHeader, PageHeaderWraps, SincoTheme, ToastNotification, useDynamicColor };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.1.2-rc.65",
3
+ "version": "1.1.2-rc.67",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -4,5 +4,5 @@ interface IconProps {
4
4
  iconName?: string;
5
5
  size?: Size;
6
6
  }
7
- declare const Icon: React.FC<IconProps>;
8
- export default Icon;
7
+ export declare const FontIcons: React.FC<IconProps>;
8
+ export {};
@@ -3,4 +3,4 @@ export * from "./Drawer";
3
3
  export * from "./FooterAction";
4
4
  export * from "./ToastNotification";
5
5
  export * from "./PageHeader";
6
- export * from "./Icons";
6
+ export * from "./FontIcons";