@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