@dev-blinq/ui-systems 1.0.136 → 1.0.138
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/dist/components/generic/Select/Select.d.ts +1 -0
- package/dist/icons/index.d.ts +9 -0
- package/dist/index.js +121 -121
- package/dist/index.mjs +4409 -4826
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/icons/index.d.ts
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
import { LucideProps } from 'lucide-react';
|
|
2
2
|
import { default as MailIcon } from './mail.svg?react';
|
|
3
3
|
import { default as TextAreaNotchIcon } from './text-area-notch.svg?react';
|
|
4
|
+
export declare const ICON_SIZE_XS = 12;
|
|
5
|
+
export declare const ICON_SIZE_SM = 14;
|
|
6
|
+
export declare const ICON_SIZE_MD = 16;
|
|
7
|
+
export declare const ICON_SIZE_LG = 18;
|
|
8
|
+
export declare const ICON_SIZE_XL = 20;
|
|
9
|
+
export declare const ICON_SIZE_2XL = 24;
|
|
10
|
+
export declare const ICON_SIZE_3XL = 30;
|
|
11
|
+
export declare const ICON_SIZE_4XL = 36;
|
|
12
|
+
export declare const ICON_SIZE_5XL = 48;
|
|
4
13
|
export declare const SaveIcon: (props: LucideProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
14
|
export declare const XIcon: (props: LucideProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
15
|
export declare const AlertCircleIcon: (props: LucideProps) => import("react/jsx-runtime").JSX.Element;
|