mainstack-design-system 0.5.4 → 0.5.5
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/build/mainstack-design-system.js +1543 -1463
- package/build/src/icons/ContactSupportIcon.d.ts +4 -0
- package/build/src/icons/FootPrintIcon.d.ts +4 -0
- package/build/src/icons/IntegrationsIcon.d.ts +4 -0
- package/build/src/icons/PersonBookFilledIcon.d.ts +4 -0
- package/build/src/icons/PersonBookIcon.d.ts +4 -0
- package/build/src/icons/index.d.ts +5 -0
- package/build/src/stories/icons/index.d.ts +5 -0
- package/package.json +1 -1
|
@@ -317,3 +317,8 @@ export { default as WorkshopsIcon } from "./WorkshopsIcon";
|
|
|
317
317
|
export { default as QuestionMarkIcon } from "./QuestionMarkIcon";
|
|
318
318
|
export { default as FingerprintIcon } from "./FingerprintIcon";
|
|
319
319
|
export { default as EncryptedIcon } from "./EncryptedIcon";
|
|
320
|
+
export { default as ContactSupportIcon } from "./ContactSupportIcon";
|
|
321
|
+
export { default as FootPrintIcon } from "./FootPrintIcon";
|
|
322
|
+
export { default as IntegrationsIcon } from "./IntegrationsIcon";
|
|
323
|
+
export { default as PersonBookIcon } from "./PersonBookIcon";
|
|
324
|
+
export { default as PersonBookFilledIcon } from "./PersonBookFilledIcon";
|
|
@@ -317,5 +317,10 @@ declare const IconsObject: {
|
|
|
317
317
|
FingerprintIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
318
318
|
QuestionMarkIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
319
319
|
EncryptedIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
320
|
+
ContactSupportIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
321
|
+
FootPrintIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
322
|
+
IntegrationsIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
323
|
+
PersonBookIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
324
|
+
PersonBookFilledIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
320
325
|
};
|
|
321
326
|
export default IconsObject;
|