@dev-blinq/ui-systems 1.0.91 → 1.0.92

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,3 +1,6 @@
1
+ import { LucideProps } from 'lucide-react';
1
2
  import { default as MailIcon } from './mail.svg?react';
2
3
  import { default as TextAreaNotchIcon } from './text-area-notch.svg?react';
3
- export { MailIcon, TextAreaNotchIcon };
4
+ declare const SaveIcon: (props: LucideProps) => import("react/jsx-runtime").JSX.Element;
5
+ declare const XIcon: (props: LucideProps) => import("react/jsx-runtime").JSX.Element;
6
+ export { MailIcon, TextAreaNotchIcon, SaveIcon, XIcon };
package/dist/index.d.ts CHANGED
@@ -8,4 +8,5 @@ export { CustomTextArea } from './components/CustomInput/CustomInput';
8
8
  export { default as Transitioner } from './components/Transitioner/Transitioner';
9
9
  export * from './components/generic';
10
10
  export * from './theme/ThemeProvider';
11
+ export * from './icons';
11
12
  export { textShortner, isTextLarge } from './functionalities/text-shortner';