@scalably/ui 0.5.6 → 0.6.0

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/index.d.cts CHANGED
@@ -1465,7 +1465,7 @@ interface SelectProps extends SelectBaseProps {
1465
1465
  * />
1466
1466
  * ```
1467
1467
  */
1468
- declare const Select: react.ForwardRefExoticComponent<SelectProps & react.RefAttributes<HTMLButtonElement | HTMLSelectElement>>;
1468
+ declare const Select: react.ForwardRefExoticComponent<SelectProps & react.RefAttributes<HTMLSelectElement | HTMLButtonElement>>;
1469
1469
 
1470
1470
  type SkeletonVariant = "text" | "circle" | "rectangle";
1471
1471
  type SkeletonSize = "sm" | "md" | "lg";
@@ -2673,6 +2673,33 @@ declare const RichTextViewer: {
2673
2673
  displayName: string;
2674
2674
  };
2675
2675
 
2676
+ interface ProgressBarProps extends React.HTMLAttributes<HTMLDivElement> {
2677
+ /**
2678
+ * Label text displayed above the progress bar
2679
+ */
2680
+ label?: string;
2681
+ /**
2682
+ * Current numeric value of the progress
2683
+ */
2684
+ currentValue: number;
2685
+ /**
2686
+ * Maximum possible value
2687
+ */
2688
+ maxValue: number;
2689
+ /**
2690
+ * Whether to display the numeric value next to the bar
2691
+ * @default false
2692
+ */
2693
+ showValue?: boolean;
2694
+ /**
2695
+ * Custom color for the progress bar fill.
2696
+ * Accepts any valid CSS color string.
2697
+ * @default "var(--sui-color-primary)"
2698
+ */
2699
+ color?: string;
2700
+ }
2701
+ declare const ProgressBar: react.ForwardRefExoticComponent<ProgressBarProps & react.RefAttributes<HTMLDivElement>>;
2702
+
2676
2703
  interface ScalablyUIProviderProps {
2677
2704
  children: React.ReactNode;
2678
2705
  /**
@@ -2718,6 +2745,24 @@ interface ScalablyUIProviderProps {
2718
2745
  */
2719
2746
  declare const ScalablyUIProvider: React.FC<ScalablyUIProviderProps>;
2720
2747
 
2748
+ interface TagProps extends React.HTMLAttributes<HTMLSpanElement> {
2749
+ /**
2750
+ * The text to display inside the tag.
2751
+ */
2752
+ value: string;
2753
+ /**
2754
+ * Text color of the tag.
2755
+ * @default "#2772F0"
2756
+ */
2757
+ textColor?: string;
2758
+ /**
2759
+ * Background color of the tag.
2760
+ * @default "#DAECFF"
2761
+ */
2762
+ backgroundColor?: string;
2763
+ }
2764
+ declare const Tag: react.ForwardRefExoticComponent<TagProps & react.RefAttributes<HTMLSpanElement>>;
2765
+
2721
2766
  /**
2722
2767
  * Type for class values accepted by clsx
2723
2768
  */
@@ -2892,1245 +2937,1261 @@ declare function normalizeAcceptedFileTypes(acceptedFileTypes: string[]): string
2892
2937
  */
2893
2938
  declare function validateFileTypeAndSize(file: File, acceptedMimeTypes: string[], maxFileSize: number): BasicFileValidationError | null;
2894
2939
 
2895
- /**
2896
- * Props for the CalendarIcon component
2897
- */
2898
- interface CalendarIconProps extends React.SVGProps<SVGSVGElement> {
2940
+ type SvgProps = React.ComponentPropsWithoutRef<"svg">;
2941
+ interface IconBaseProps extends SvgProps {
2899
2942
  /** Size of the icon in pixels. Defaults to 24. */
2900
2943
  size?: number;
2901
- /** Additional CSS classes to apply to the icon */
2902
- className?: string;
2944
+ /** ViewBox for the SVG. Defaults to "0 0 24 24". */
2945
+ viewBox?: string;
2903
2946
  }
2904
2947
  /**
2905
- * Calendar icon component - displays a calendar with date indicators.
2948
+ * Public props shared by all icon components.
2949
+ *
2950
+ * Consumers should use this type for icon props. It intentionally omits
2951
+ * `children`, which are provided by each specific icon implementation.
2952
+ */
2953
+ type IconProps = Omit<IconBaseProps, "children">;
2954
+
2955
+ interface CopyIconProps extends IconProps {
2956
+ }
2957
+ /**
2958
+ * Copy icon component - displays a copy icon.
2906
2959
  *
2907
2960
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
2908
2961
  *
2909
2962
  * @example
2910
2963
  * ```tsx
2911
- * import { CalendarIcon } from '@scalably/ui';
2964
+ * import { CopyIcon } from '@scalably/ui';
2912
2965
  *
2913
- * <CalendarIcon size={32} className="sui-text-primary" />
2966
+ * <CopyIcon size={24} className="sui-text-primary" />
2914
2967
  * ```
2915
2968
  */
2916
- declare const CalendarIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<CalendarIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
2969
+ declare const CopyIcon: {
2970
+ (props: CopyIconProps): react_jsx_runtime.JSX.Element;
2971
+ displayName: string;
2972
+ };
2917
2973
 
2918
- /**
2919
- * Props for the CaptureIcon component
2920
- */
2921
- interface CaptureIconProps extends React.SVGProps<SVGSVGElement> {
2922
- /** Size of the icon in pixels. Defaults to 24. */
2923
- size?: number;
2924
- /** Additional CSS classes to apply to the icon */
2925
- className?: string;
2974
+ interface DeleteIconProps extends IconProps {
2926
2975
  }
2927
2976
  /**
2928
- * Capture icon component - displays a camera icon with a capture button.
2977
+ * Delete icon component - displays a delete icon.
2929
2978
  *
2930
2979
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
2931
2980
  *
2932
2981
  * @example
2933
2982
  * ```tsx
2934
- * import { CaptureIcon } from '@scalably/ui';
2983
+ * import { DeleteIcon } from '@scalably/ui';
2935
2984
  *
2936
- * <CaptureIcon size={24} className="sui-text-primary" />
2985
+ * <DeleteIcon size={24} className="sui-text-primary" />
2937
2986
  * ```
2938
2987
  */
2939
- declare const CaptureIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<CaptureIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
2988
+ declare const DeleteIcon: {
2989
+ (props: DeleteIconProps): react_jsx_runtime.JSX.Element;
2990
+ displayName: string;
2991
+ };
2940
2992
 
2941
- /**
2942
- * Props for the CheckIcon component
2943
- */
2944
- interface CheckIconProps extends React.SVGProps<SVGSVGElement> {
2945
- /** Size of the icon in pixels. Defaults to 20. */
2946
- size?: number;
2947
- /** Additional CSS classes to apply to the icon */
2948
- className?: string;
2993
+ interface DownloadIconProps extends IconProps {
2949
2994
  }
2950
2995
  /**
2951
- * Check icon component - displays a checkmark in a green gradient circle.
2996
+ * Download icon component - displays a download icon.
2952
2997
  *
2953
2998
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
2954
2999
  *
2955
3000
  * @example
2956
3001
  * ```tsx
2957
- * import { CheckIcon } from '@scalably/ui';
3002
+ * import { DownloadIcon } from '@scalably/ui';
2958
3003
  *
2959
- * <CheckIcon size={24} className="sui-text-primary" />
3004
+ * <DownloadIcon size={24} className="sui-text-primary" />
2960
3005
  * ```
2961
3006
  */
2962
- declare const CheckIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<CheckIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3007
+ declare const DownloadIcon: {
3008
+ (props: DownloadIconProps): react_jsx_runtime.JSX.Element;
3009
+ displayName: string;
3010
+ };
2963
3011
 
2964
- /**
2965
- * Props for the CloseIcon component
2966
- */
2967
- interface CloseIconProps extends React.SVGProps<SVGSVGElement> {
2968
- /** Size of the icon in pixels. Defaults to 24. */
2969
- size?: number;
2970
- /** Additional CSS classes to apply to the icon */
2971
- className?: string;
3012
+ interface EditIconProps extends IconProps {
2972
3013
  }
2973
3014
  /**
2974
- * Close icon component - displays a cross icon.
3015
+ * Edit icon component - displays an edit icon.
2975
3016
  *
2976
3017
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
2977
3018
  *
2978
3019
  * @example
2979
3020
  * ```tsx
2980
- * import { CloseIcon } from '@scalably/ui';
3021
+ * import { EditIcon } from '@scalably/ui';
2981
3022
  *
2982
- * <CloseIcon size={24} className="sui-text-primary" />
3023
+ * <EditIcon size={24} className="sui-text-primary" />
2983
3024
  * ```
2984
3025
  */
2985
- declare const CloseIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<CloseIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
2986
-
2987
- interface CopyIconProps extends React.SVGProps<SVGSVGElement> {
2988
- size?: number;
2989
- className?: string;
2990
- }
2991
- declare const CopyIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<CopyIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
2992
-
2993
- interface CropIconProps extends React.SVGProps<SVGSVGElement> {
2994
- size?: number;
2995
- className?: string;
2996
- }
2997
- declare const CropIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<CropIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
2998
-
2999
- interface DeleteIconProps extends React.SVGProps<SVGSVGElement> {
3000
- size?: number;
3001
- className?: string;
3002
- }
3003
- declare const DeleteIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<DeleteIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3026
+ declare const EditIcon: {
3027
+ (props: EditIconProps): react_jsx_runtime.JSX.Element;
3028
+ displayName: string;
3029
+ };
3004
3030
 
3005
- interface DropdownIconProps extends React.SVGProps<SVGSVGElement> {
3006
- /** Size of the icon in pixels. Defaults to 24. */
3007
- size?: number;
3008
- /** Additional CSS classes to apply to the icon */
3009
- className?: string;
3031
+ interface FilterIconProps extends IconProps {
3010
3032
  }
3011
3033
  /**
3012
- * Dropdown icon component - displays a down arrow icon.
3034
+ * Filter icon component - displays a filter icon.
3013
3035
  *
3014
3036
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3015
3037
  *
3016
3038
  * @example
3017
3039
  * ```tsx
3018
- * import { DropdownIcon } from '@scalably/ui';
3040
+ * import { FilterIcon } from '@scalably/ui';
3019
3041
  *
3020
- * <DropdownIcon size={24} className="sui-text-primary" />
3042
+ * <FilterIcon size={24} className="sui-text-primary" />
3021
3043
  * ```
3022
3044
  */
3023
- declare const DropdownIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<DropdownIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3045
+ declare const FilterIcon: {
3046
+ (props: FilterIconProps): react_jsx_runtime.JSX.Element;
3047
+ displayName: string;
3048
+ };
3024
3049
 
3025
- interface DropUpIconProps extends React.SVGProps<SVGSVGElement> {
3026
- /** Size of the icon in pixels. Defaults to 24. */
3027
- size?: number;
3028
- /** Additional CSS classes to apply to the icon */
3029
- className?: string;
3050
+ interface ResetIconProps extends IconProps {
3030
3051
  }
3031
3052
  /**
3032
- * DropUp icon component - displays an up arrow icon.
3053
+ * Reset icon component - displays a reset icon.
3033
3054
  *
3034
3055
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3035
3056
  *
3036
3057
  * @example
3037
3058
  * ```tsx
3038
- * import { DropUpIcon } from '@scalably/ui';
3059
+ * import { ResetIcon } from '@scalably/ui';
3039
3060
  *
3040
- * <DropUpIcon size={24} className="sui-text-primary" />
3061
+ * <ResetIcon size={24} className="sui-text-primary" />
3041
3062
  * ```
3042
3063
  */
3043
- declare const DropUpIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<DropUpIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3044
-
3045
- interface EditIconProps extends React.SVGProps<SVGSVGElement> {
3046
- size?: number;
3047
- className?: string;
3048
- }
3049
- declare const EditIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<EditIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3064
+ declare const ResetIcon: {
3065
+ (props: ResetIconProps): react_jsx_runtime.JSX.Element;
3066
+ displayName: string;
3067
+ };
3050
3068
 
3051
- interface ErrorIconProps extends React.SVGProps<SVGSVGElement> {
3052
- /** Size of the icon in pixels. Defaults to 24. */
3053
- size?: number;
3054
- /** Additional CSS classes to apply to the icon */
3055
- className?: string;
3069
+ interface SearchIconProps extends IconProps {
3056
3070
  }
3057
3071
  /**
3058
- * Error icon component - displays an error icon.
3072
+ * Search icon component - a magnifying glass icon for search functionality.
3059
3073
  *
3060
3074
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3061
3075
  *
3062
3076
  * @example
3063
3077
  * ```tsx
3064
- * import { ErrorIcon } from '@scalably/ui';
3078
+ * import { SearchIcon } from '@scalably/ui';
3065
3079
  *
3066
- * <ErrorIcon size={24} className="sui-text-primary" />
3080
+ * <SearchIcon size={20} className="sui-text-blue-500" />
3067
3081
  * ```
3068
3082
  */
3069
- declare const ErrorIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ErrorIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3083
+ declare const SearchIcon: {
3084
+ (props: SearchIconProps): react_jsx_runtime.JSX.Element;
3085
+ displayName: string;
3086
+ };
3070
3087
 
3071
- interface EyeIconProps extends React.SVGProps<SVGSVGElement> {
3072
- /** Size of the icon in pixels. Defaults to 24. */
3073
- size?: number;
3074
- /** Additional CSS classes to apply to the icon */
3075
- className?: string;
3088
+ interface TranslateIconProps extends IconProps {
3076
3089
  }
3077
3090
  /**
3078
- * Eye icon component - displays an eye icon.
3091
+ * Translate icon component - displays a translate icon.
3079
3092
  *
3080
3093
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3081
3094
  *
3082
3095
  * @example
3083
3096
  * ```tsx
3084
- * import { EyeIcon } from '@scalably/ui';
3097
+ * import { TranslateIcon } from '@scalably/ui';
3085
3098
  *
3086
- * <EyeIcon size={24} className="sui-text-primary" />
3099
+ * <TranslateIcon size={24} className="sui-text-primary" />
3087
3100
  * ```
3088
3101
  */
3089
- declare const EyeIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<EyeIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3102
+ declare const TranslateIcon: {
3103
+ (props: TranslateIconProps): react_jsx_runtime.JSX.Element;
3104
+ displayName: string;
3105
+ };
3090
3106
 
3091
- interface EyeSlashIconProps extends React.SVGProps<SVGSVGElement> {
3092
- /** Size of the icon in pixels. Defaults to 24. */
3093
- size?: number;
3094
- /** Additional CSS classes to apply to the icon */
3095
- className?: string;
3107
+ /**
3108
+ * Props for the DiscordIcon component
3109
+ */
3110
+ interface DiscordIconProps extends IconProps {
3096
3111
  }
3097
3112
  /**
3098
- * Eye slash icon component - displays an eye slash icon.
3113
+ * Discord icon component - displays the Discord logo.
3099
3114
  *
3100
3115
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3101
3116
  *
3102
3117
  * @example
3103
3118
  * ```tsx
3104
- * import { EyeSlashIcon } from '@scalably/ui';
3119
+ * import { DiscordIcon } from '@scalably/ui';
3105
3120
  *
3106
- * <EyeSlashIcon size={24} className="sui-text-primary" />
3121
+ * <DiscordIcon size={32} className="sui-text-primary" />
3107
3122
  * ```
3108
3123
  */
3109
- declare const EyeSlashIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<EyeSlashIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3124
+ declare const DiscordIcon: {
3125
+ ({ size, ...props }: DiscordIconProps): react_jsx_runtime.JSX.Element;
3126
+ displayName: string;
3127
+ };
3110
3128
 
3111
- interface FileIconProps extends React.SVGProps<SVGSVGElement> {
3112
- /** Size of the icon in pixels. Defaults to 24. */
3113
- size?: number;
3114
- /** Additional CSS classes to apply to the icon */
3115
- className?: string;
3129
+ interface FacebookIconProps extends IconProps {
3116
3130
  }
3117
3131
  /**
3118
- * File icon component - displays a file icon.
3132
+ * Facebook icon component - displays the Facebook logo.
3119
3133
  *
3120
3134
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3121
3135
  *
3122
3136
  * @example
3123
3137
  * ```tsx
3124
- * import { FileIcon } from '@scalably/ui';
3138
+ * import { FacebookIcon } from '@scalably/ui';
3125
3139
  *
3126
- * <FileIcon size={24} className="sui-text-primary" />
3140
+ * <FacebookIcon size={32} className="sui-text-primary" />
3127
3141
  * ```
3128
3142
  */
3129
- declare const FileIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<FileIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3143
+ declare const FacebookIcon: {
3144
+ ({ size, ...props }: FacebookIconProps): react_jsx_runtime.JSX.Element;
3145
+ displayName: string;
3146
+ };
3130
3147
 
3131
- interface FileUploadIconProps extends React.SVGProps<SVGSVGElement> {
3132
- /** Size of the icon in pixels. Defaults to 24. */
3133
- size?: number;
3134
- /** Additional CSS classes to apply to the icon */
3135
- className?: string;
3148
+ interface GmailIconProps extends IconProps {
3136
3149
  }
3137
3150
  /**
3138
- * FileUpload icon component - displays a file upload icon.
3151
+ * Gmail icon component - displays the Gmail logo.
3139
3152
  *
3140
3153
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3141
3154
  *
3142
3155
  * @example
3143
3156
  * ```tsx
3144
- * import { FileUploadIcon } from '@scalably/ui';
3157
+ * import { GmailIcon } from '@scalably/ui';
3145
3158
  *
3146
- * <FileUploadIcon size={24} className="sui-text-primary" />
3159
+ * <GmailIcon size={32} className="sui-text-primary" />
3147
3160
  * ```
3148
3161
  */
3149
- declare const FileUploadIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<FileUploadIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3162
+ declare const GmailIcon: {
3163
+ ({ size, ...props }: GmailIconProps): react_jsx_runtime.JSX.Element;
3164
+ displayName: string;
3165
+ };
3150
3166
 
3151
- interface GridIconProps extends React.SVGProps<SVGSVGElement> {
3152
- /** Size of the icon in pixels. Defaults to 24. */
3153
- size?: number;
3154
- /** Additional CSS classes to apply to the icon */
3155
- className?: string;
3167
+ interface InstagramIconProps extends IconProps {
3156
3168
  }
3157
3169
  /**
3158
- * Grid icon component - displays a grid icon.
3170
+ * Instagram icon component - displays the Instagram logo.
3159
3171
  *
3160
3172
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3161
3173
  *
3162
3174
  * @example
3163
3175
  * ```tsx
3164
- * import { GridIcon } from '@scalably/ui';
3176
+ * import { InstagramIcon } from '@scalably/ui';
3165
3177
  *
3166
- * <GridIcon size={24} className="sui-text-primary" />
3178
+ * <InstagramIcon size={32} className="sui-text-primary" />
3167
3179
  * ```
3168
3180
  */
3169
- declare const GridIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<GridIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3181
+ declare const InstagramIcon: {
3182
+ ({ size, ...props }: InstagramIconProps): react_jsx_runtime.JSX.Element;
3183
+ displayName: string;
3184
+ };
3170
3185
 
3171
- interface ImageIconProps extends React.SVGProps<SVGSVGElement> {
3172
- /** Size of the icon in pixels. Defaults to 24. */
3173
- size?: number;
3174
- /** Additional CSS classes to apply to the icon */
3175
- className?: string;
3186
+ interface KakaoTalkIconProps extends IconProps {
3176
3187
  }
3177
3188
  /**
3178
- * Image icon component - displays an image icon.
3189
+ * KakaoTalk icon component - displays the KakaoTalk logo.
3179
3190
  *
3180
3191
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3181
3192
  *
3182
3193
  * @example
3183
3194
  * ```tsx
3184
- * import { ImageIcon } from '@scalably/ui';
3195
+ * import { KakaoTalkIcon } from '@scalably/ui';
3185
3196
  *
3186
- * <ImageIcon size={24} className="sui-text-primary" />
3197
+ * <KakaoTalkIcon size={32} className="sui-text-primary" />
3187
3198
  * ```
3188
3199
  */
3189
- declare const ImageIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ImageIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3200
+ declare const KakaoTalkIcon: {
3201
+ ({ size, ...props }: KakaoTalkIconProps): react_jsx_runtime.JSX.Element;
3202
+ displayName: string;
3203
+ };
3190
3204
 
3191
- interface ImageUploadIconProps extends React.SVGProps<SVGSVGElement> {
3192
- /** Size of the icon in pixels. Defaults to 24. */
3193
- size?: number;
3194
- /** Additional CSS classes to apply to the icon */
3195
- className?: string;
3205
+ interface LineIconProps extends IconProps {
3196
3206
  }
3197
3207
  /**
3198
- * ImageUpload icon component - displays an image upload icon.
3208
+ * Line icon component - displays the Line logo.
3199
3209
  *
3200
3210
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3201
3211
  *
3202
3212
  * @example
3203
3213
  * ```tsx
3204
- * import { ImageUploadIcon } from '@scalably/ui';
3214
+ * import { LineIcon } from '@scalably/ui';
3205
3215
  *
3206
- * <ImageUploadIcon size={24} className="sui-text-primary" />
3216
+ * <LineIcon size={32} className="sui-text-primary" />
3207
3217
  * ```
3208
3218
  */
3209
- declare const ImageUploadIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ImageUploadIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3219
+ declare const LineIcon: {
3220
+ ({ size, ...props }: LineIconProps): react_jsx_runtime.JSX.Element;
3221
+ displayName: string;
3222
+ };
3210
3223
 
3211
- interface IndeterminateIconProps extends React.SVGProps<SVGSVGElement> {
3212
- /** Size of the icon in pixels. Defaults to 20. */
3213
- size?: number;
3214
- /** Additional CSS classes to apply to the icon */
3215
- className?: string;
3224
+ interface LinkedInIconProps extends IconProps {
3216
3225
  }
3217
3226
  /**
3218
- * Indeterminate icon component - displays an indeterminate icon.
3227
+ * LinkedIn icon component - displays the LinkedIn logo.
3219
3228
  *
3220
3229
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3221
3230
  *
3222
3231
  * @example
3223
3232
  * ```tsx
3224
- * import { IndeterminateIcon } from '@scalably/ui';
3233
+ * import { LinkedInIcon } from '@scalably/ui';
3225
3234
  *
3226
- * <IndeterminateIcon size={20} className="sui-text-primary" />
3235
+ * <LinkedInIcon size={32} className="sui-text-primary" />
3227
3236
  * ```
3228
3237
  */
3229
- declare const IndeterminateIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<IndeterminateIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3238
+ declare const LinkedInIcon: {
3239
+ ({ size, ...props }: LinkedInIconProps): react_jsx_runtime.JSX.Element;
3240
+ displayName: string;
3241
+ };
3230
3242
 
3231
- interface InfoIconProps extends React.SVGProps<SVGSVGElement> {
3232
- /** Size of the icon in pixels. Defaults to 24. */
3233
- size?: number;
3234
- /** Additional CSS classes to apply to the icon */
3235
- className?: string;
3243
+ interface MessengerIconProps extends IconProps {
3236
3244
  }
3237
3245
  /**
3238
- * Info icon component - displays an info icon.
3246
+ * Messenger icon component - displays the Messenger logo.
3239
3247
  *
3240
3248
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3241
3249
  *
3242
3250
  * @example
3243
3251
  * ```tsx
3244
- * import { InfoIcon } from '@scalably/ui';
3252
+ * import { MessengerIcon } from '@scalably/ui';
3245
3253
  *
3246
- * <InfoIcon size={24} className="sui-text-primary" />
3254
+ * <MessengerIcon size={32} className="sui-text-primary" />
3247
3255
  * ```
3248
3256
  */
3249
- declare const InfoIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<InfoIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3257
+ declare const MessengerIcon: {
3258
+ ({ size, ...props }: MessengerIconProps): react_jsx_runtime.JSX.Element;
3259
+ displayName: string;
3260
+ };
3250
3261
 
3251
- interface ListIconProps extends React.SVGProps<SVGSVGElement> {
3252
- /** Size of the icon in pixels. Defaults to 24. */
3253
- size?: number;
3254
- /** Additional CSS classes to apply to the icon */
3255
- className?: string;
3262
+ interface RedditIconProps extends IconProps {
3256
3263
  }
3257
3264
  /**
3258
- * List icon component - displays a list icon.
3265
+ * Reddit icon component - displays the Reddit logo.
3259
3266
  *
3260
3267
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3261
3268
  *
3262
3269
  * @example
3263
3270
  * ```tsx
3264
- * import { ListIcon } from '@scalably/ui';
3271
+ * import { RedditIcon } from '@scalably/ui';
3265
3272
  *
3266
- * <ListIcon size={24} className="sui-text-primary" />
3273
+ * <RedditIcon size={32} className="sui-text-primary" />
3267
3274
  * ```
3268
3275
  */
3269
- declare const ListIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ListIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3276
+ declare const RedditIcon: {
3277
+ ({ size, ...props }: RedditIconProps): react_jsx_runtime.JSX.Element;
3278
+ displayName: string;
3279
+ };
3270
3280
 
3271
- interface MinusIconProps extends React.SVGProps<SVGSVGElement> {
3272
- /** Size of the icon in pixels. Defaults to 16. */
3273
- size?: number;
3274
- /** Additional CSS classes to apply to the icon */
3275
- className?: string;
3281
+ interface SignalIconProps extends IconProps {
3276
3282
  }
3277
3283
  /**
3278
- * Minus icon component - displays a minus icon.
3284
+ * Signal icon component - displays the Signal logo.
3279
3285
  *
3280
3286
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3281
3287
  *
3282
3288
  * @example
3283
3289
  * ```tsx
3284
- * import { MinusIcon } from '@scalably/ui';
3290
+ * import { SignalIcon } from '@scalably/ui';
3285
3291
  *
3286
- * <MinusIcon size={16} className="sui-text-primary" />
3292
+ * <SignalIcon size={32} className="sui-text-primary" />
3287
3293
  * ```
3288
3294
  */
3289
- declare const MinusIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<MinusIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3295
+ declare const SignalIcon: {
3296
+ ({ size, ...props }: SignalIconProps): react_jsx_runtime.JSX.Element;
3297
+ displayName: string;
3298
+ };
3290
3299
 
3291
- interface MultipleSelectionIconProps extends React.SVGProps<SVGSVGElement> {
3292
- /** Size of the icon in pixels. Defaults to 24. */
3293
- size?: number;
3294
- /** Additional CSS classes to apply to the icon */
3295
- className?: string;
3300
+ interface SlackIconProps extends IconProps {
3296
3301
  }
3297
3302
  /**
3298
- * MultipleSelection icon component - displays a multiple selection icon.
3303
+ * Slack icon component - displays the Slack logo.
3299
3304
  *
3300
3305
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3301
3306
  *
3302
3307
  * @example
3303
3308
  * ```tsx
3304
- * import { MultipleSelectionIcon } from '@scalably/ui';
3309
+ * import { SlackIcon } from '@scalably/ui';
3305
3310
  *
3306
- * <MultipleSelectionIcon size={24} className="sui-text-primary" />
3311
+ * <SlackIcon size={32} className="sui-text-primary" />
3307
3312
  * ```
3308
3313
  */
3309
- declare const MultipleSelectionIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<MultipleSelectionIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3314
+ declare const SlackIcon: {
3315
+ ({ size, ...props }: SlackIconProps): react_jsx_runtime.JSX.Element;
3316
+ displayName: string;
3317
+ };
3310
3318
 
3311
- /**
3312
- * Props for the PlusIcon component
3313
- */
3314
- interface PlusIconProps extends React.SVGProps<SVGSVGElement> {
3315
- /** Size of the icon in pixels. Defaults to 16. */
3316
- size?: number;
3317
- /** Additional CSS classes to apply to the icon */
3318
- className?: string;
3319
+ interface TelegramIconProps extends IconProps {
3319
3320
  }
3320
3321
  /**
3321
- * Plus icon component - displays a plus icon.
3322
+ * Telegram icon component - displays the Telegram logo.
3322
3323
  *
3323
3324
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3324
3325
  *
3325
3326
  * @example
3326
3327
  * ```tsx
3327
- * import { PlusIcon } from '@scalably/ui';
3328
+ * import { TelegramIcon } from '@scalably/ui';
3328
3329
  *
3329
- * <PlusIcon size={16} className="sui-text-primary" />
3330
+ * <TelegramIcon size={32} className="sui-text-primary" />
3330
3331
  * ```
3331
3332
  */
3332
- declare const PlusIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<PlusIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3333
+ declare const TelegramIcon: {
3334
+ ({ size, ...props }: TelegramIconProps): react_jsx_runtime.JSX.Element;
3335
+ displayName: string;
3336
+ };
3333
3337
 
3334
- interface ResetIconProps extends React.SVGProps<SVGSVGElement> {
3335
- /** Size of the icon in pixels. Defaults to 24. */
3336
- size?: number;
3337
- /** Additional CSS classes to apply to the icon */
3338
- className?: string;
3338
+ interface TiktokIconProps extends IconProps {
3339
3339
  }
3340
3340
  /**
3341
- * Reset icon component - displays a reset icon.
3341
+ * Tiktok icon component - displays the Tiktok logo.
3342
3342
  *
3343
3343
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3344
3344
  *
3345
3345
  * @example
3346
3346
  * ```tsx
3347
- * import { ResetIcon } from '@scalably/ui';
3347
+ * import { TiktokIcon } from '@scalably/ui';
3348
3348
  *
3349
- * <ResetIcon size={24} className="sui-text-primary" />
3349
+ * <TiktokIcon size={32} className="sui-text-primary" />
3350
3350
  * ```
3351
3351
  */
3352
- declare const ResetIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ResetIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3352
+ declare const TiktokIcon: {
3353
+ ({ size, ...props }: TiktokIconProps): react_jsx_runtime.JSX.Element;
3354
+ displayName: string;
3355
+ };
3353
3356
 
3354
- interface RotateLeftIconProps extends React.SVGProps<SVGSVGElement> {
3355
- /** Size of the icon in pixels. Defaults to 24. */
3356
- size?: number;
3357
- /** Additional CSS classes to apply to the icon */
3358
- className?: string;
3357
+ interface TwitchIconProps extends IconProps {
3359
3358
  }
3360
3359
  /**
3361
- * RotateLeft icon component - displays a rotate left icon.
3360
+ * Twitch icon component - displays the Twitch logo.
3362
3361
  *
3363
3362
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3364
3363
  *
3365
3364
  * @example
3366
3365
  * ```tsx
3367
- * import { RotateLeftIcon } from '@scalably/ui';
3366
+ * import { TwitchIcon } from '@scalably/ui';
3368
3367
  *
3369
- * <RotateLeftIcon size={24} className="sui-text-primary" />
3368
+ * <TwitchIcon size={32} className="sui-text-primary" />
3370
3369
  * ```
3371
3370
  */
3372
- declare const RotateLeftIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<RotateLeftIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3371
+ declare const TwitchIcon: {
3372
+ ({ size, ...props }: TwitchIconProps): react_jsx_runtime.JSX.Element;
3373
+ displayName: string;
3374
+ };
3373
3375
 
3374
- interface RotateRightIconProps extends React.SVGProps<SVGSVGElement> {
3375
- /** Size of the icon in pixels. Defaults to 24. */
3376
- size?: number;
3377
- /** Stroke width of the icon in pixels. Defaults to 1.5. */
3378
- /** Additional CSS classes to apply to the icon */
3379
- className?: string;
3376
+ interface WhatsAppIconProps extends IconProps {
3380
3377
  }
3381
3378
  /**
3382
- * RotateRight icon component - displays a rotate right icon.
3379
+ * WhatsApp icon component - displays the WhatsApp logo.
3383
3380
  *
3384
3381
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3385
3382
  *
3386
3383
  * @example
3387
3384
  * ```tsx
3388
- * import { RotateRightIcon } from '@scalably/ui';
3385
+ * import { WhatsAppIcon } from '@scalably/ui';
3389
3386
  *
3390
- * <RotateRightIcon size={24} className="sui-text-primary" />
3387
+ * <WhatsAppIcon size={32} className="sui-text-primary" />
3391
3388
  * ```
3392
3389
  */
3393
- declare const RotateRightIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<RotateRightIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3390
+ declare const WhatsAppIcon: {
3391
+ ({ size, ...props }: WhatsAppIconProps): react_jsx_runtime.JSX.Element;
3392
+ displayName: string;
3393
+ };
3394
3394
 
3395
+ interface XIconProps extends IconProps {
3396
+ }
3395
3397
  /**
3396
- * Props for the SearchIcon component
3398
+ * X icon component - displays the X logo.
3399
+ *
3400
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3401
+ *
3402
+ * @example
3403
+ * ```tsx
3404
+ * import { XIcon } from '@scalably/ui';
3405
+ *
3406
+ * <XIcon size={32} className="sui-text-primary" />
3407
+ * ```
3397
3408
  */
3398
- interface SearchIconProps extends React.SVGProps<SVGSVGElement> {
3399
- /** Size of the icon in pixels. Defaults to 24. */
3400
- size?: number;
3401
- /** Additional CSS classes to apply to the icon */
3402
- className?: string;
3409
+ declare const XIcon: {
3410
+ ({ size, ...props }: XIconProps): react_jsx_runtime.JSX.Element;
3411
+ displayName: string;
3412
+ };
3413
+
3414
+ interface YoutubeIconProps extends IconProps {
3403
3415
  }
3404
3416
  /**
3405
- * Search icon component - a magnifying glass icon for search functionality.
3417
+ * Youtube icon component - displays the Youtube logo.
3406
3418
  *
3407
3419
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3408
3420
  *
3409
3421
  * @example
3410
3422
  * ```tsx
3411
- * import { SearchIcon } from '@scalably/ui';
3423
+ * import { YoutubeIcon } from '@scalably/ui';
3412
3424
  *
3413
- * <SearchIcon size={20} className="sui-text-blue-500" />
3425
+ * <YoutubeIcon size={32} className="sui-text-primary" />
3414
3426
  * ```
3415
3427
  */
3416
- declare const SearchIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<SearchIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3428
+ declare const YoutubeIcon: {
3429
+ ({ size, ...props }: YoutubeIconProps): react_jsx_runtime.JSX.Element;
3430
+ displayName: string;
3431
+ };
3417
3432
 
3418
- interface SettingsIconProps extends React.SVGProps<SVGSVGElement> {
3419
- /** Size of the icon in pixels. Defaults to 24. */
3420
- size?: number;
3421
- /** Additional CSS classes to apply to the icon */
3422
- className?: string;
3433
+ interface AlignCenterIconProps extends IconProps {
3434
+ }
3435
+ declare const AlignCenterIcon: {
3436
+ ({ size, ...props }: AlignCenterIconProps): react_jsx_runtime.JSX.Element;
3437
+ displayName: string;
3438
+ };
3439
+
3440
+ interface AlignLeftIconProps extends IconProps {
3441
+ }
3442
+ declare const AlignLeftIcon: {
3443
+ ({ size, ...props }: AlignLeftIconProps): react_jsx_runtime.JSX.Element;
3444
+ displayName: string;
3445
+ };
3446
+
3447
+ interface AlignRightIconProps extends IconProps {
3448
+ }
3449
+ declare const AlignRightIcon: {
3450
+ ({ size, ...props }: AlignRightIconProps): react_jsx_runtime.JSX.Element;
3451
+ displayName: string;
3452
+ };
3453
+
3454
+ interface BoldIconProps extends IconProps {
3423
3455
  }
3424
3456
  /**
3425
- * Settings icon component - displays a settings icon.
3457
+ * Bold icon component - displays a bold icon.
3426
3458
  *
3427
3459
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3428
3460
  *
3429
3461
  * @example
3430
3462
  * ```tsx
3431
- * import { SettingsIcon } from '@scalably/ui';
3463
+ * import { BoldIcon } from '@scalably/ui';
3432
3464
  *
3433
- * <SettingsIcon size={24} className="sui-text-primary" />
3465
+ * <BoldIcon size={16} className="sui-text-primary" />
3434
3466
  * ```
3435
3467
  */
3436
- declare const SettingsIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<SettingsIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3468
+ declare const BoldIcon: {
3469
+ ({ size, ...props }: BoldIconProps): react_jsx_runtime.JSX.Element;
3470
+ displayName: string;
3471
+ };
3472
+
3473
+ interface InsertImageIconProps extends IconProps {
3474
+ }
3475
+ declare const InsertImageIcon: {
3476
+ ({ size, ...props }: InsertImageIconProps): react_jsx_runtime.JSX.Element;
3477
+ displayName: string;
3478
+ };
3437
3479
 
3480
+ interface InsertVideoIconProps extends IconProps {
3481
+ }
3482
+ declare const InsertVideoIcon: {
3483
+ ({ size, ...props }: InsertVideoIconProps): react_jsx_runtime.JSX.Element;
3484
+ displayName: string;
3485
+ };
3486
+
3487
+ interface ItalicIconProps extends IconProps {
3488
+ }
3438
3489
  /**
3439
- * Props for the StarIcon component
3490
+ * Italic icon component - displays an italic icon.
3491
+ *
3492
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3493
+ *
3494
+ * @example
3495
+ * ```tsx
3496
+ * import { ItalicIcon } from '@scalably/ui';
3497
+ *
3498
+ * <ItalicIcon size={16} className="sui-text-primary" />
3499
+ * ```
3440
3500
  */
3441
- interface StarIconProps extends React.SVGProps<SVGSVGElement> {
3442
- /** Size of the icon in pixels. Defaults to 24. */
3443
- size?: number;
3444
- /** Additional CSS classes to apply to the icon */
3445
- className?: string;
3446
- /** Fill percentage (0-1) for partial star rendering. Defaults to 1 (full star). */
3447
- fillPercentage?: number;
3501
+ declare const ItalicIcon: {
3502
+ ({ size, ...props }: ItalicIconProps): react_jsx_runtime.JSX.Element;
3503
+ displayName: string;
3504
+ };
3505
+
3506
+ interface LinkIconProps extends IconProps {
3507
+ }
3508
+ declare const LinkIcon: {
3509
+ ({ size, ...props }: LinkIconProps): react_jsx_runtime.JSX.Element;
3510
+ displayName: string;
3511
+ };
3512
+
3513
+ interface ListBulletIconProps extends IconProps {
3514
+ }
3515
+ declare const ListBulletIcon: {
3516
+ ({ size, ...props }: ListBulletIconProps): react_jsx_runtime.JSX.Element;
3517
+ displayName: string;
3518
+ };
3519
+
3520
+ interface ListNumberIconProps extends IconProps {
3521
+ }
3522
+ declare const ListNumberIcon: {
3523
+ ({ size, ...props }: ListNumberIconProps): react_jsx_runtime.JSX.Element;
3524
+ displayName: string;
3525
+ };
3526
+
3527
+ interface UnderlineIconProps extends IconProps {
3448
3528
  }
3449
3529
  /**
3450
- * Star icon component - displays a star shape.
3530
+ * Underline icon component - displays an underline icon.
3451
3531
  *
3452
3532
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3453
- * Supports partial fill for half-star ratings.
3454
3533
  *
3455
3534
  * @example
3456
3535
  * ```tsx
3457
- * import { StarIcon } from '@scalably/ui';
3536
+ * import { UnderlineIcon } from '@scalably/ui';
3458
3537
  *
3459
- * <StarIcon size={24} className="sui-text-yellow-500" />
3460
- * <StarIcon size={24} fillPercentage={0.5} className="sui-text-yellow-500" />
3538
+ * <UnderlineIcon size={16} className="sui-text-primary" />
3461
3539
  * ```
3462
3540
  */
3463
- declare const StarIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<StarIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3541
+ declare const UnderlineIcon: {
3542
+ ({ size, ...props }: UnderlineIconProps): react_jsx_runtime.JSX.Element;
3543
+ displayName: string;
3544
+ };
3464
3545
 
3546
+ interface FileIconProps extends IconProps {
3547
+ }
3465
3548
  /**
3466
- * Props for the SuccessIcon component
3549
+ * File icon component - displays a file icon.
3550
+ *
3551
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3552
+ *
3553
+ * @example
3554
+ * ```tsx
3555
+ * import { FileIcon } from '@scalably/ui';
3556
+ *
3557
+ * <FileIcon size={24} className="sui-text-primary" />
3558
+ * ```
3467
3559
  */
3468
- interface SuccessIconProps extends React.SVGProps<SVGSVGElement> {
3469
- /** Size of the icon in pixels. Defaults to 24. */
3470
- size?: number;
3471
- /** Additional CSS classes to apply to the icon */
3472
- className?: string;
3560
+ declare const FileIcon: {
3561
+ (props: FileIconProps): react_jsx_runtime.JSX.Element;
3562
+ displayName: string;
3563
+ };
3564
+
3565
+ interface FileUploadIconProps extends IconProps {
3473
3566
  }
3474
3567
  /**
3475
- * Success icon component - displays a checkmark in a green gradient circle.
3568
+ * FileUpload icon component - displays a file upload icon.
3476
3569
  *
3477
- * **Note:** This icon has fixed brand colors (green gradient with white checkmark)
3478
- * and cannot be customized. Use for success/confirmation states.
3570
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3479
3571
  *
3480
3572
  * @example
3481
3573
  * ```tsx
3482
- * import { SuccessIcon } from '@scalably/ui';
3574
+ * import { FileUploadIcon } from '@scalably/ui';
3483
3575
  *
3484
- * <SuccessIcon size={24} />
3576
+ * <FileUploadIcon size={24} className="sui-text-primary" />
3485
3577
  * ```
3486
3578
  */
3487
- declare const SuccessIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<SuccessIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3579
+ declare const FileUploadIcon: {
3580
+ (props: FileUploadIconProps): react_jsx_runtime.JSX.Element;
3581
+ displayName: string;
3582
+ };
3488
3583
 
3489
- interface TickIconProps extends React.SVGProps<SVGSVGElement> {
3490
- /** Size of the icon in pixels. Defaults to 16. */
3491
- size?: number;
3492
- /** Additional CSS classes to apply to the icon */
3493
- className?: string;
3584
+ interface ImageIconProps extends IconProps {
3494
3585
  }
3495
3586
  /**
3496
- * Tick icon component - displays a tick icon.
3587
+ * Image icon component - displays an image icon.
3497
3588
  *
3498
3589
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3499
3590
  *
3500
3591
  * @example
3501
3592
  * ```tsx
3502
- * import { TickIcon } from '@scalably/ui';
3593
+ * import { ImageIcon } from '@scalably/ui';
3503
3594
  *
3504
- * <TickIcon size={16} className="sui-text-primary" />
3595
+ * <ImageIcon size={24} className="sui-text-primary" />
3505
3596
  * ```
3506
3597
  */
3507
- declare const TickIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<TickIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3598
+ declare const ImageIcon: {
3599
+ (props: ImageIconProps): react_jsx_runtime.JSX.Element;
3600
+ displayName: string;
3601
+ };
3508
3602
 
3509
- interface ToFirstIconProps extends React.SVGProps<SVGSVGElement> {
3510
- /** Size of the icon in pixels. Defaults to 24. */
3511
- size?: number;
3512
- /** Additional CSS classes to apply to the icon */
3513
- className?: string;
3603
+ interface ImageUploadIconProps extends IconProps {
3514
3604
  }
3515
3605
  /**
3516
- * ToFirst icon component - displays a to first icon.
3606
+ * ImageUpload icon component - displays an image upload icon.
3517
3607
  *
3518
3608
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3519
3609
  *
3520
3610
  * @example
3521
3611
  * ```tsx
3522
- * import { ToFirstIcon } from '@scalably/ui';
3612
+ * import { ImageUploadIcon } from '@scalably/ui';
3523
3613
  *
3524
- * <ToFirstIcon size={24} className="sui-text-primary" />
3614
+ * <ImageUploadIcon size={24} className="sui-text-primary" />
3525
3615
  * ```
3526
3616
  */
3527
- declare const ToFirstIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ToFirstIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3617
+ declare const ImageUploadIcon: {
3618
+ (props: ImageUploadIconProps): react_jsx_runtime.JSX.Element;
3619
+ displayName: string;
3620
+ };
3528
3621
 
3529
- interface ToLastIconProps extends React.SVGProps<SVGSVGElement> {
3530
- /** Size of the icon in pixels. Defaults to 24. */
3531
- size?: number;
3532
- /** Additional CSS classes to apply to the icon */
3533
- className?: string;
3622
+ interface VideoIconProps extends IconProps {
3534
3623
  }
3535
3624
  /**
3536
- * ToLast icon component - displays a to last icon.
3625
+ * Video icon component - displays a video icon.
3537
3626
  *
3538
3627
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3539
3628
  *
3540
3629
  * @example
3541
3630
  * ```tsx
3542
- * import { ToLastIcon } from '@scalably/ui';
3631
+ * import { VideoIcon } from '@scalably/ui';
3543
3632
  *
3544
- * <ToLastIcon size={24} className="sui-text-primary" />
3633
+ * <VideoIcon size={24} className="sui-text-primary" />
3545
3634
  * ```
3546
3635
  */
3547
- declare const ToLastIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ToLastIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3636
+ declare const VideoIcon: {
3637
+ (props: VideoIconProps): react_jsx_runtime.JSX.Element;
3638
+ displayName: string;
3639
+ };
3548
3640
 
3549
- interface ToNextIconProps extends React.SVGProps<SVGSVGElement> {
3550
- /** Size of the icon in pixels. Defaults to 24. */
3551
- size?: number;
3552
- /** Additional CSS classes to apply to the icon */
3553
- className?: string;
3641
+ interface VideoUploadIconProps extends IconProps {
3554
3642
  }
3555
3643
  /**
3556
- * ToNext icon component - displays a to next icon.
3644
+ * VideoUpload icon component - displays a video upload icon.
3557
3645
  *
3558
3646
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3559
3647
  *
3560
3648
  * @example
3561
3649
  * ```tsx
3562
- * import { ToNextIcon } from '@scalably/ui';
3650
+ * import { VideoUploadIcon } from '@scalably/ui';
3563
3651
  *
3564
- * <ToNextIcon size={24} className="sui-text-primary" />
3652
+ * <VideoUploadIcon size={24} className="sui-text-primary" />
3565
3653
  * ```
3566
3654
  */
3567
- declare const ToNextIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ToNextIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3655
+ declare const VideoUploadIcon: {
3656
+ (props: VideoUploadIconProps): react_jsx_runtime.JSX.Element;
3657
+ displayName: string;
3658
+ };
3568
3659
 
3569
- interface ToPreviousIconProps extends React.SVGProps<SVGSVGElement> {
3570
- /** Size of the icon in pixels. Defaults to 24. */
3571
- size?: number;
3572
- /** Additional CSS classes to apply to the icon */
3573
- className?: string;
3660
+ interface CaptureIconProps extends IconProps {
3574
3661
  }
3575
3662
  /**
3576
- * ToPrevious icon component - displays a to previous icon.
3663
+ * Capture icon component - displays a camera icon with a capture button.
3577
3664
  *
3578
3665
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3579
3666
  *
3580
3667
  * @example
3581
3668
  * ```tsx
3582
- * import { ToPreviousIcon } from '@scalably/ui';
3669
+ * import { CaptureIcon } from '@scalably/ui';
3583
3670
  *
3584
- * <ToPreviousIcon size={24} className="sui-text-primary" />
3671
+ * <CaptureIcon size={24} className="sui-text-primary" />
3585
3672
  * ```
3586
3673
  */
3587
- declare const ToPreviousIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ToPreviousIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3674
+ declare const CaptureIcon: {
3675
+ (props: CaptureIconProps): react_jsx_runtime.JSX.Element;
3676
+ displayName: string;
3677
+ };
3588
3678
 
3589
- interface TranslateIconProps extends React.SVGProps<SVGSVGElement> {
3590
- /** Size of the icon in pixels. Defaults to 24. */
3591
- size?: number;
3592
- /** Additional CSS classes to apply to the icon */
3593
- className?: string;
3679
+ interface CropIconProps extends IconProps {
3594
3680
  }
3595
3681
  /**
3596
- * Translate icon component - displays a translate icon.
3682
+ * Crop icon component - displays a crop icon.
3597
3683
  *
3598
3684
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3599
3685
  *
3600
3686
  * @example
3601
3687
  * ```tsx
3602
- * import { TranslateIcon } from '@scalably/ui';
3688
+ * import { CropIcon } from '@scalably/ui';
3603
3689
  *
3604
- * <TranslateIcon size={24} className="sui-text-primary" />
3690
+ * <CropIcon size={24} className="sui-text-primary" />
3605
3691
  * ```
3606
3692
  */
3607
- declare const TranslateIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<TranslateIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3693
+ declare const CropIcon: {
3694
+ (props: CropIconProps): react_jsx_runtime.JSX.Element;
3695
+ displayName: string;
3696
+ };
3608
3697
 
3609
- interface VideoIconProps extends React.SVGProps<SVGSVGElement> {
3610
- /** Size of the icon in pixels. Defaults to 24. */
3611
- size?: number;
3612
- /** Additional CSS classes to apply to the icon */
3613
- className?: string;
3698
+ interface RotateLeftIconProps extends IconProps {
3614
3699
  }
3615
3700
  /**
3616
- * Video icon component - displays a video icon.
3701
+ * RotateLeft icon component - displays a rotate left icon.
3617
3702
  *
3618
3703
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3619
3704
  *
3620
3705
  * @example
3621
3706
  * ```tsx
3622
- * import { VideoIcon } from '@scalably/ui';
3707
+ * import { RotateLeftIcon } from '@scalably/ui';
3623
3708
  *
3624
- * <VideoIcon size={24} className="sui-text-primary" />
3709
+ * <RotateLeftIcon size={24} className="sui-text-primary" />
3625
3710
  * ```
3626
3711
  */
3627
- declare const VideoIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<VideoIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3712
+ declare const RotateLeftIcon: {
3713
+ (props: RotateLeftIconProps): react_jsx_runtime.JSX.Element;
3714
+ displayName: string;
3715
+ };
3628
3716
 
3629
- interface VideoUploadIconProps extends React.SVGProps<SVGSVGElement> {
3630
- /** Size of the icon in pixels. Defaults to 24. */
3631
- size?: number;
3632
- /** Additional CSS classes to apply to the icon */
3633
- className?: string;
3717
+ interface RotateRightIconProps extends IconProps {
3634
3718
  }
3635
3719
  /**
3636
- * VideoUpload icon component - displays a video upload icon.
3720
+ * RotateRight icon component - displays a rotate right icon.
3637
3721
  *
3638
3722
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3639
3723
  *
3640
3724
  * @example
3641
3725
  * ```tsx
3642
- * import { VideoUploadIcon } from '@scalably/ui';
3726
+ * import { RotateRightIcon } from '@scalably/ui';
3643
3727
  *
3644
- * <VideoUploadIcon size={24} className="sui-text-primary" />
3728
+ * <RotateRightIcon size={24} className="sui-text-primary" />
3729
+ * ```
3730
+ */
3731
+ declare const RotateRightIcon: {
3732
+ (props: RotateRightIconProps): react_jsx_runtime.JSX.Element;
3733
+ displayName: string;
3734
+ };
3735
+
3736
+ interface DropdownIconProps extends IconProps {
3737
+ }
3738
+ /**
3739
+ * Dropdown icon component - displays a down arrow icon.
3740
+ *
3741
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3742
+ *
3743
+ * @example
3744
+ * ```tsx
3745
+ * import { DropdownIcon } from '@scalably/ui';
3746
+ *
3747
+ * <DropdownIcon size={24} className="sui-text-primary" />
3748
+ * ```
3749
+ */
3750
+ declare const DropdownIcon: {
3751
+ (props: DropdownIconProps): react_jsx_runtime.JSX.Element;
3752
+ displayName: string;
3753
+ };
3754
+
3755
+ interface DropUpIconProps extends IconProps {
3756
+ }
3757
+ /**
3758
+ * DropUp icon component - displays an up arrow icon.
3759
+ *
3760
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3761
+ *
3762
+ * @example
3763
+ * ```tsx
3764
+ * import { DropUpIcon } from '@scalably/ui';
3765
+ *
3766
+ * <DropUpIcon size={24} className="sui-text-primary" />
3767
+ * ```
3768
+ */
3769
+ declare const DropUpIcon: {
3770
+ (props: DropUpIconProps): react_jsx_runtime.JSX.Element;
3771
+ displayName: string;
3772
+ };
3773
+
3774
+ interface ToFirstIconProps extends IconProps {
3775
+ }
3776
+ /**
3777
+ * ToFirst icon component - displays a to first icon.
3778
+ *
3779
+ * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3780
+ *
3781
+ * @example
3782
+ * ```tsx
3783
+ * import { ToFirstIcon } from '@scalably/ui';
3784
+ *
3785
+ * <ToFirstIcon size={24} className="sui-text-primary" />
3645
3786
  * ```
3646
3787
  */
3647
- declare const VideoUploadIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<VideoUploadIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3788
+ declare const ToFirstIcon: {
3789
+ (props: ToFirstIconProps): react_jsx_runtime.JSX.Element;
3790
+ displayName: string;
3791
+ };
3648
3792
 
3649
- interface WarnIconProps extends React.SVGProps<SVGSVGElement> {
3650
- /** Size of the icon in pixels. Defaults to 24. */
3651
- size?: number;
3652
- /** Additional CSS classes to apply to the icon */
3653
- className?: string;
3793
+ interface ToLastIconProps extends IconProps {
3654
3794
  }
3655
3795
  /**
3656
- * Warn icon component - displays a warn icon.
3796
+ * ToLast icon component - displays a to last icon.
3657
3797
  *
3658
3798
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3659
3799
  *
3660
3800
  * @example
3661
3801
  * ```tsx
3662
- * import { WarnIcon } from '@scalably/ui';
3802
+ * import { ToLastIcon } from '@scalably/ui';
3663
3803
  *
3664
- * <WarnIcon size={24} className="sui-text-primary" />
3804
+ * <ToLastIcon size={24} className="sui-text-primary" />
3665
3805
  * ```
3666
3806
  */
3667
- declare const WarnIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<WarnIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3807
+ declare const ToLastIcon: {
3808
+ (props: ToLastIconProps): react_jsx_runtime.JSX.Element;
3809
+ displayName: string;
3810
+ };
3668
3811
 
3669
- /**
3670
- * Props for the DiscordIcon component
3671
- */
3672
- interface DiscordIconProps extends React.SVGProps<SVGSVGElement> {
3673
- /** Size of the icon in pixels. Defaults to 32. */
3674
- size?: number;
3675
- /** Additional CSS classes to apply to the icon */
3676
- className?: string;
3812
+ interface ToNextIconProps extends IconProps {
3677
3813
  }
3678
3814
  /**
3679
- * Discord icon component - displays the Discord logo.
3815
+ * ToNext icon component - displays a to next icon.
3680
3816
  *
3681
3817
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3682
3818
  *
3683
3819
  * @example
3684
3820
  * ```tsx
3685
- * import { DiscordIcon } from '@scalably/ui';
3821
+ * import { ToNextIcon } from '@scalably/ui';
3686
3822
  *
3687
- * <DiscordIcon size={32} className="sui-text-primary" />
3823
+ * <ToNextIcon size={24} className="sui-text-primary" />
3688
3824
  * ```
3689
3825
  */
3690
- declare const DiscordIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<DiscordIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3826
+ declare const ToNextIcon: {
3827
+ (props: ToNextIconProps): react_jsx_runtime.JSX.Element;
3828
+ displayName: string;
3829
+ };
3691
3830
 
3692
- interface FacebookIconProps extends React.SVGProps<SVGSVGElement> {
3693
- /** Size of the icon in pixels. Defaults to 32. */
3694
- size?: number;
3695
- /** Additional CSS classes to apply to the icon */
3696
- className?: string;
3831
+ interface ToPreviousIconProps extends IconProps {
3697
3832
  }
3698
3833
  /**
3699
- * Facebook icon component - displays the Facebook logo.
3834
+ * ToPrevious icon component - displays a to previous icon.
3700
3835
  *
3701
3836
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3702
3837
  *
3703
3838
  * @example
3704
3839
  * ```tsx
3705
- * import { FacebookIcon } from '@scalably/ui';
3840
+ * import { ToPreviousIcon } from '@scalably/ui';
3706
3841
  *
3707
- * <FacebookIcon size={32} className="sui-text-primary" />
3842
+ * <ToPreviousIcon size={24} className="sui-text-primary" />
3708
3843
  * ```
3709
3844
  */
3710
- declare const FacebookIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<FacebookIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3845
+ declare const ToPreviousIcon: {
3846
+ (props: ToPreviousIconProps): react_jsx_runtime.JSX.Element;
3847
+ displayName: string;
3848
+ };
3711
3849
 
3712
- interface GmailIconProps extends React.SVGProps<SVGSVGElement> {
3713
- /** Size of the icon in pixels. Defaults to 32. */
3714
- size?: number;
3715
- /** Additional CSS classes to apply to the icon */
3716
- className?: string;
3850
+ interface CheckIconProps extends IconProps {
3717
3851
  }
3718
3852
  /**
3719
- * Gmail icon component - displays the Gmail logo.
3853
+ * Check icon component - displays a checkmark in a green gradient circle.
3720
3854
  *
3721
3855
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3722
3856
  *
3723
3857
  * @example
3724
3858
  * ```tsx
3725
- * import { GmailIcon } from '@scalably/ui';
3859
+ * import { CheckIcon } from '@scalably/ui';
3726
3860
  *
3727
- * <GmailIcon size={32} className="sui-text-primary" />
3861
+ * <CheckIcon size={24} className="sui-text-primary" />
3728
3862
  * ```
3729
3863
  */
3730
- declare const GmailIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<GmailIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3864
+ declare const CheckIcon: {
3865
+ (props: CheckIconProps): react_jsx_runtime.JSX.Element;
3866
+ displayName: string;
3867
+ };
3731
3868
 
3732
- interface InstagramIconProps extends React.SVGProps<SVGSVGElement> {
3733
- /** Size of the icon in pixels. Defaults to 32. */
3734
- size?: number;
3735
- /** Additional CSS classes to apply to the icon */
3736
- className?: string;
3869
+ interface CloseIconProps extends IconProps {
3737
3870
  }
3738
3871
  /**
3739
- * Instagram icon component - displays the Instagram logo.
3872
+ * Close icon component - displays a cross icon.
3740
3873
  *
3741
3874
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3742
3875
  *
3743
3876
  * @example
3744
3877
  * ```tsx
3745
- * import { InstagramIcon } from '@scalably/ui';
3878
+ * import { CloseIcon } from '@scalably/ui';
3746
3879
  *
3747
- * <InstagramIcon size={32} className="sui-text-primary" />
3880
+ * <CloseIcon size={24} className="sui-text-primary" />
3748
3881
  * ```
3749
3882
  */
3750
- declare const InstagramIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<InstagramIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3883
+ declare const CloseIcon: {
3884
+ (props: CloseIconProps): react_jsx_runtime.JSX.Element;
3885
+ displayName: string;
3886
+ };
3751
3887
 
3752
- interface KakaoTalkIconProps extends React.SVGProps<SVGSVGElement> {
3753
- /** Size of the icon in pixels. Defaults to 32. */
3754
- size?: number;
3755
- /** Additional CSS classes to apply to the icon */
3756
- className?: string;
3888
+ interface ErrorIconProps extends IconProps {
3757
3889
  }
3758
3890
  /**
3759
- * KakaoTalk icon component - displays the KakaoTalk logo.
3891
+ * Error icon component - displays an error icon.
3760
3892
  *
3761
3893
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3762
3894
  *
3763
3895
  * @example
3764
3896
  * ```tsx
3765
- * import { KakaoTalkIcon } from '@scalably/ui';
3897
+ * import { ErrorIcon } from '@scalably/ui';
3766
3898
  *
3767
- * <KakaoTalkIcon size={32} className="sui-text-primary" />
3899
+ * <ErrorIcon size={24} className="sui-text-primary" />
3768
3900
  * ```
3769
3901
  */
3770
- declare const KakaoTalkIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<KakaoTalkIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3902
+ declare const ErrorIcon: {
3903
+ (props: ErrorIconProps): react_jsx_runtime.JSX.Element;
3904
+ displayName: string;
3905
+ };
3771
3906
 
3772
- interface LineIconProps extends React.SVGProps<SVGSVGElement> {
3773
- /** Size of the icon in pixels. Defaults to 32. */
3774
- size?: number;
3775
- /** Additional CSS classes to apply to the icon */
3776
- className?: string;
3907
+ interface IndeterminateIconProps extends IconProps {
3777
3908
  }
3778
3909
  /**
3779
- * Line icon component - displays the Line logo.
3910
+ * Indeterminate icon component - displays an indeterminate icon.
3780
3911
  *
3781
3912
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3782
3913
  *
3783
3914
  * @example
3784
3915
  * ```tsx
3785
- * import { LineIcon } from '@scalably/ui';
3916
+ * import { IndeterminateIcon } from '@scalably/ui';
3786
3917
  *
3787
- * <LineIcon size={32} className="sui-text-primary" />
3918
+ * <IndeterminateIcon size={20} className="sui-text-primary" />
3788
3919
  * ```
3789
3920
  */
3790
- declare const LineIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<LineIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3921
+ declare const IndeterminateIcon: {
3922
+ (props: IndeterminateIconProps): react_jsx_runtime.JSX.Element;
3923
+ displayName: string;
3924
+ };
3791
3925
 
3792
- interface LinkedInIconProps extends React.SVGProps<SVGSVGElement> {
3793
- /** Size of the icon in pixels. Defaults to 32. */
3794
- size?: number;
3795
- /** Additional CSS classes to apply to the icon */
3796
- className?: string;
3926
+ interface InfoIconProps extends IconProps {
3797
3927
  }
3798
3928
  /**
3799
- * LinkedIn icon component - displays the LinkedIn logo.
3929
+ * Info icon component - displays an info icon.
3800
3930
  *
3801
3931
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3802
3932
  *
3803
3933
  * @example
3804
3934
  * ```tsx
3805
- * import { LinkedInIcon } from '@scalably/ui';
3935
+ * import { InfoIcon } from '@scalably/ui';
3806
3936
  *
3807
- * <LinkedInIcon size={32} className="sui-text-primary" />
3937
+ * <InfoIcon size={24} className="sui-text-primary" />
3808
3938
  * ```
3809
3939
  */
3810
- declare const LinkedInIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<LinkedInIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3940
+ declare const InfoIcon: {
3941
+ (props: InfoIconProps): react_jsx_runtime.JSX.Element;
3942
+ displayName: string;
3943
+ };
3811
3944
 
3812
- interface MessengerIconProps extends React.SVGProps<SVGSVGElement> {
3813
- /** Size of the icon in pixels. Defaults to 32. */
3814
- size?: number;
3815
- /** Additional CSS classes to apply to the icon */
3816
- className?: string;
3945
+ interface SuccessIconProps extends IconProps {
3817
3946
  }
3818
3947
  /**
3819
- * Messenger icon component - displays the Messenger logo.
3948
+ * Success icon component - displays a checkmark in a green gradient circle.
3820
3949
  *
3821
- * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3950
+ * **Note:** This icon has fixed brand colors (green gradient with white checkmark)
3951
+ * and cannot be customized. Use for success/confirmation states.
3822
3952
  *
3823
3953
  * @example
3824
3954
  * ```tsx
3825
- * import { MessengerIcon } from '@scalably/ui';
3955
+ * import { SuccessIcon } from '@scalably/ui';
3826
3956
  *
3827
- * <MessengerIcon size={32} className="sui-text-primary" />
3957
+ * <SuccessIcon size={24} />
3828
3958
  * ```
3829
3959
  */
3830
- declare const MessengerIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<MessengerIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3960
+ declare const SuccessIcon: {
3961
+ (props: SuccessIconProps): react_jsx_runtime.JSX.Element;
3962
+ displayName: string;
3963
+ };
3831
3964
 
3832
- interface RedditIconProps extends React.SVGProps<SVGSVGElement> {
3833
- /** Size of the icon in pixels. Defaults to 32. */
3834
- size?: number;
3835
- /** Additional CSS classes to apply to the icon */
3836
- className?: string;
3965
+ interface TickIconProps extends IconProps {
3837
3966
  }
3838
3967
  /**
3839
- * Reddit icon component - displays the Reddit logo.
3968
+ * Tick icon component - displays a tick icon.
3840
3969
  *
3841
3970
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3842
3971
  *
3843
3972
  * @example
3844
3973
  * ```tsx
3845
- * import { RedditIcon } from '@scalably/ui';
3974
+ * import { TickIcon } from '@scalably/ui';
3846
3975
  *
3847
- * <RedditIcon size={32} className="sui-text-primary" />
3976
+ * <TickIcon size={16} className="sui-text-primary" />
3848
3977
  * ```
3849
3978
  */
3850
- declare const RedditIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<RedditIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3979
+ declare const TickIcon: {
3980
+ (props: TickIconProps): react_jsx_runtime.JSX.Element;
3981
+ displayName: string;
3982
+ };
3851
3983
 
3852
- interface SignalIconProps extends React.SVGProps<SVGSVGElement> {
3853
- /** Size of the icon in pixels. Defaults to 32. */
3854
- size?: number;
3855
- /** Additional CSS classes to apply to the icon */
3856
- className?: string;
3984
+ interface WarnIconProps extends IconProps {
3857
3985
  }
3858
3986
  /**
3859
- * Signal icon component - displays the Signal logo.
3987
+ * Warn icon component - displays a warn icon.
3860
3988
  *
3861
3989
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3862
3990
  *
3863
3991
  * @example
3864
3992
  * ```tsx
3865
- * import { SignalIcon } from '@scalably/ui';
3993
+ * import { WarnIcon } from '@scalably/ui';
3866
3994
  *
3867
- * <SignalIcon size={32} className="sui-text-primary" />
3995
+ * <WarnIcon size={24} className="sui-text-primary" />
3868
3996
  * ```
3869
3997
  */
3870
- declare const SignalIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<SignalIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
3998
+ declare const WarnIcon: {
3999
+ (props: WarnIconProps): react_jsx_runtime.JSX.Element;
4000
+ displayName: string;
4001
+ };
3871
4002
 
3872
- interface SlackIconProps extends React.SVGProps<SVGSVGElement> {
3873
- /** Size of the icon in pixels. Defaults to 32. */
3874
- size?: number;
3875
- /** Additional CSS classes to apply to the icon */
3876
- className?: string;
4003
+ interface CalendarIconProps extends IconProps {
3877
4004
  }
3878
4005
  /**
3879
- * Slack icon component - displays the Slack logo.
4006
+ * Calendar icon component - displays a calendar with date indicators.
3880
4007
  *
3881
4008
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3882
4009
  *
3883
4010
  * @example
3884
4011
  * ```tsx
3885
- * import { SlackIcon } from '@scalably/ui';
4012
+ * import { CalendarIcon } from '@scalably/ui';
3886
4013
  *
3887
- * <SlackIcon size={32} className="sui-text-primary" />
4014
+ * <CalendarIcon size={32} className="sui-text-primary" />
3888
4015
  * ```
3889
4016
  */
3890
- declare const SlackIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<SlackIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4017
+ declare const CalendarIcon: {
4018
+ (props: CalendarIconProps): react_jsx_runtime.JSX.Element;
4019
+ displayName: string;
4020
+ };
3891
4021
 
3892
- interface TelegramIconProps extends React.SVGProps<SVGSVGElement> {
3893
- /** Size of the icon in pixels. Defaults to 32. */
3894
- size?: number;
3895
- /** Additional CSS classes to apply to the icon */
3896
- className?: string;
4022
+ interface EyeIconProps extends IconProps {
3897
4023
  }
3898
4024
  /**
3899
- * Telegram icon component - displays the Telegram logo.
4025
+ * Eye icon component - displays an eye icon.
3900
4026
  *
3901
4027
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3902
4028
  *
3903
4029
  * @example
3904
4030
  * ```tsx
3905
- * import { TelegramIcon } from '@scalably/ui';
4031
+ * import { EyeIcon } from '@scalably/ui';
3906
4032
  *
3907
- * <TelegramIcon size={32} className="sui-text-primary" />
4033
+ * <EyeIcon size={24} className="sui-text-primary" />
3908
4034
  * ```
3909
4035
  */
3910
- declare const TelegramIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<TelegramIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4036
+ declare const EyeIcon: {
4037
+ (props: EyeIconProps): react_jsx_runtime.JSX.Element;
4038
+ displayName: string;
4039
+ };
3911
4040
 
3912
- interface TiktokIconProps extends React.SVGProps<SVGSVGElement> {
3913
- /** Size of the icon in pixels. Defaults to 32. */
3914
- size?: number;
3915
- /** Additional CSS classes to apply to the icon */
3916
- className?: string;
4041
+ interface EyeSlashIconProps extends IconProps {
3917
4042
  }
3918
4043
  /**
3919
- * Tiktok icon component - displays the Tiktok logo.
4044
+ * Eye slash icon component - displays an eye slash icon.
3920
4045
  *
3921
4046
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3922
4047
  *
3923
4048
  * @example
3924
4049
  * ```tsx
3925
- * import { TiktokIcon } from '@scalably/ui';
4050
+ * import { EyeSlashIcon } from '@scalably/ui';
3926
4051
  *
3927
- * <TiktokIcon size={32} className="sui-text-primary" />
4052
+ * <EyeSlashIcon size={24} className="sui-text-primary" />
3928
4053
  * ```
3929
4054
  */
3930
- declare const TiktokIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<TiktokIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4055
+ declare const EyeSlashIcon: {
4056
+ (props: EyeSlashIconProps): react_jsx_runtime.JSX.Element;
4057
+ displayName: string;
4058
+ };
3931
4059
 
3932
- interface TwitchIconProps extends React.SVGProps<SVGSVGElement> {
3933
- /** Size of the icon in pixels. Defaults to 32. */
3934
- size?: number;
3935
- /** Additional CSS classes to apply to the icon */
3936
- className?: string;
4060
+ interface GridIconProps extends IconProps {
3937
4061
  }
3938
4062
  /**
3939
- * Twitch icon component - displays the Twitch logo.
4063
+ * Grid icon component - displays a grid icon.
3940
4064
  *
3941
4065
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3942
4066
  *
3943
4067
  * @example
3944
4068
  * ```tsx
3945
- * import { TwitchIcon } from '@scalably/ui';
4069
+ * import { GridIcon } from '@scalably/ui';
3946
4070
  *
3947
- * <TwitchIcon size={32} className="sui-text-primary" />
4071
+ * <GridIcon size={24} className="sui-text-primary" />
3948
4072
  * ```
3949
4073
  */
3950
- declare const TwitchIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<TwitchIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4074
+ declare const GridIcon: {
4075
+ (props: GridIconProps): react_jsx_runtime.JSX.Element;
4076
+ displayName: string;
4077
+ };
3951
4078
 
3952
- interface WhatsAppIconProps extends React.SVGProps<SVGSVGElement> {
3953
- /** Size of the icon in pixels. Defaults to 32. */
3954
- size?: number;
3955
- /** Additional CSS classes to apply to the icon */
3956
- className?: string;
4079
+ interface ListIconProps extends IconProps {
3957
4080
  }
3958
4081
  /**
3959
- * WhatsApp icon component - displays the WhatsApp logo.
4082
+ * List icon component - displays a list icon.
3960
4083
  *
3961
4084
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3962
4085
  *
3963
4086
  * @example
3964
4087
  * ```tsx
3965
- * import { WhatsAppIcon } from '@scalably/ui';
4088
+ * import { ListIcon } from '@scalably/ui';
3966
4089
  *
3967
- * <WhatsAppIcon size={32} className="sui-text-primary" />
4090
+ * <ListIcon size={24} className="sui-text-primary" />
3968
4091
  * ```
3969
4092
  */
3970
- declare const WhatsAppIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<WhatsAppIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4093
+ declare const ListIcon: {
4094
+ (props: ListIconProps): react_jsx_runtime.JSX.Element;
4095
+ displayName: string;
4096
+ };
3971
4097
 
3972
- interface XIconProps extends React.SVGProps<SVGSVGElement> {
3973
- /** Size of the icon in pixels. Defaults to 32. */
3974
- size?: number;
3975
- /** Additional CSS classes to apply to the icon */
3976
- className?: string;
4098
+ interface MinusIconProps extends IconProps {
3977
4099
  }
3978
4100
  /**
3979
- * X icon component - displays the X logo.
4101
+ * Minus icon component - displays a minus icon.
3980
4102
  *
3981
4103
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
3982
4104
  *
3983
4105
  * @example
3984
4106
  * ```tsx
3985
- * import { XIcon } from '@scalably/ui';
4107
+ * import { MinusIcon } from '@scalably/ui';
3986
4108
  *
3987
- * <XIcon size={32} className="sui-text-primary" />
4109
+ * <MinusIcon size={16} className="sui-text-primary" />
3988
4110
  * ```
3989
4111
  */
3990
- declare const XIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<XIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4112
+ declare const MinusIcon: {
4113
+ (props: MinusIconProps): react_jsx_runtime.JSX.Element;
4114
+ displayName: string;
4115
+ };
3991
4116
 
3992
- interface YoutubeIconProps extends React.SVGProps<SVGSVGElement> {
3993
- /** Size of the icon in pixels. Defaults to 32. */
3994
- size?: number;
3995
- /** Additional CSS classes to apply to the icon */
3996
- className?: string;
4117
+ interface MultipleSelectionIconProps extends IconProps {
3997
4118
  }
3998
4119
  /**
3999
- * Youtube icon component - displays the Youtube logo.
4120
+ * MultipleSelection icon component - displays a multiple selection icon.
4000
4121
  *
4001
4122
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4002
4123
  *
4003
4124
  * @example
4004
4125
  * ```tsx
4005
- * import { YoutubeIcon } from '@scalably/ui';
4126
+ * import { MultipleSelectionIcon } from '@scalably/ui';
4006
4127
  *
4007
- * <YoutubeIcon size={32} className="sui-text-primary" />
4128
+ * <MultipleSelectionIcon size={24} className="sui-text-primary" />
4008
4129
  * ```
4009
4130
  */
4010
- declare const YoutubeIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<YoutubeIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4011
-
4012
- interface AlignCenterIconProps extends React.SVGProps<SVGSVGElement> {
4013
- /** Size of the icon in pixels. Defaults to 16. */
4014
- size?: number;
4015
- /** Additional CSS classes to apply to the icon */
4016
- className?: string;
4017
- }
4018
- declare const AlignCenterIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<AlignCenterIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4019
-
4020
- interface AlignLeftIconProps extends React.SVGProps<SVGSVGElement> {
4021
- /** Size of the icon in pixels. Defaults to 16. */
4022
- size?: number;
4023
- /** Additional CSS classes to apply to the icon */
4024
- className?: string;
4025
- }
4026
- declare const AlignLeftIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<AlignLeftIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4027
-
4028
- interface AlignRightIconProps extends React.SVGProps<SVGSVGElement> {
4029
- /** Size of the icon in pixels. Defaults to 16. */
4030
- size?: number;
4031
- /** Additional CSS classes to apply to the icon */
4032
- className?: string;
4033
- }
4034
- declare const AlignRightIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<AlignRightIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4131
+ declare const MultipleSelectionIcon: {
4132
+ (props: MultipleSelectionIconProps): react_jsx_runtime.JSX.Element;
4133
+ displayName: string;
4134
+ };
4035
4135
 
4036
- interface BoldIconProps extends React.SVGProps<SVGSVGElement> {
4037
- /** Size of the icon in pixels. Defaults to 16. */
4038
- size?: number;
4039
- /** Additional CSS classes to apply to the icon */
4040
- className?: string;
4136
+ interface PlusIconProps extends IconProps {
4041
4137
  }
4042
4138
  /**
4043
- * Bold icon component - displays a bold icon.
4139
+ * Plus icon component - displays a plus icon.
4044
4140
  *
4045
4141
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4046
4142
  *
4047
4143
  * @example
4048
4144
  * ```tsx
4049
- * import { BoldIcon } from '@scalably/ui';
4145
+ * import { PlusIcon } from '@scalably/ui';
4050
4146
  *
4051
- * <BoldIcon size={16} className="sui-text-primary" />
4147
+ * <PlusIcon size={16} className="sui-text-primary" />
4052
4148
  * ```
4053
4149
  */
4054
- declare const BoldIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<BoldIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4055
-
4056
- interface InsertImageIconProps extends React.SVGProps<SVGSVGElement> {
4057
- /** Size of the icon in pixels. Defaults to 16. */
4058
- size?: number;
4059
- /** Additional CSS classes to apply to the icon */
4060
- className?: string;
4061
- }
4062
- declare const InsertImageIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<InsertImageIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4063
-
4064
- interface InsertVideoIconProps extends React.SVGProps<SVGSVGElement> {
4065
- /** Size of the icon in pixels. Defaults to 16. */
4066
- size?: number;
4067
- /** Additional CSS classes to apply to the icon */
4068
- className?: string;
4069
- }
4070
- declare const InsertVideoIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<InsertVideoIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4150
+ declare const PlusIcon: {
4151
+ (props: PlusIconProps): react_jsx_runtime.JSX.Element;
4152
+ displayName: string;
4153
+ };
4071
4154
 
4072
- interface ItalicIconProps extends React.SVGProps<SVGSVGElement> {
4073
- /** Size of the icon in pixels. Defaults to 16. */
4074
- size?: number;
4075
- /** Additional CSS classes to apply to the icon */
4076
- className?: string;
4155
+ interface SettingsIconProps extends IconProps {
4077
4156
  }
4078
4157
  /**
4079
- * Italic icon component - displays an italic icon.
4158
+ * Settings icon component - displays a settings icon.
4080
4159
  *
4081
4160
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4082
4161
  *
4083
4162
  * @example
4084
4163
  * ```tsx
4085
- * import { ItalicIcon } from '@scalably/ui';
4164
+ * import { SettingsIcon } from '@scalably/ui';
4086
4165
  *
4087
- * <ItalicIcon size={16} className="sui-text-primary" />
4166
+ * <SettingsIcon size={24} className="sui-text-primary" />
4088
4167
  * ```
4089
4168
  */
4090
- declare const ItalicIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ItalicIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4091
-
4092
- interface LinkIconProps extends React.SVGProps<SVGSVGElement> {
4093
- /** Size of the icon in pixels. Defaults to 16. */
4094
- size?: number;
4095
- /** Additional CSS classes to apply to the icon */
4096
- className?: string;
4097
- }
4098
- declare const LinkIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<LinkIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4099
-
4100
- interface ListBulletIconProps extends React.SVGProps<SVGSVGElement> {
4101
- /** Size of the icon in pixels. Defaults to 16. */
4102
- size?: number;
4103
- /** Additional CSS classes to apply to the icon */
4104
- className?: string;
4105
- }
4106
- declare const ListBulletIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ListBulletIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4107
-
4108
- interface ListNumberIconProps extends React.SVGProps<SVGSVGElement> {
4109
- /** Size of the icon in pixels. Defaults to 16. */
4110
- size?: number;
4111
- /** Additional CSS classes to apply to the icon */
4112
- className?: string;
4113
- }
4114
- declare const ListNumberIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ListNumberIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4169
+ declare const SettingsIcon: {
4170
+ (props: SettingsIconProps): react_jsx_runtime.JSX.Element;
4171
+ displayName: string;
4172
+ };
4115
4173
 
4116
- interface UnderlineIconProps extends React.SVGProps<SVGSVGElement> {
4117
- /** Size of the icon in pixels. Defaults to 16. */
4118
- size?: number;
4119
- /** Additional CSS classes to apply to the icon */
4120
- className?: string;
4174
+ /**
4175
+ * Props for the StarIcon component
4176
+ */
4177
+ interface StarIconProps extends IconProps {
4178
+ /** Fill percentage (0-1) for partial star rendering. Defaults to 1 (full star). */
4179
+ fillPercentage?: number;
4121
4180
  }
4122
4181
  /**
4123
- * Underline icon component - displays an underline icon.
4182
+ * Star icon component - displays a star shape.
4124
4183
  *
4125
4184
  * This icon uses `currentColor`, so it can be styled with Tailwind classes.
4185
+ * Supports partial fill for half-star ratings.
4126
4186
  *
4127
4187
  * @example
4128
4188
  * ```tsx
4129
- * import { UnderlineIcon } from '@scalably/ui';
4189
+ * import { StarIcon } from '@scalably/ui';
4130
4190
  *
4131
- * <UnderlineIcon size={16} className="sui-text-primary" />
4191
+ * <StarIcon size={24} className="sui-text-yellow-500" />
4192
+ * <StarIcon size={24} fillPercentage={0.5} className="sui-text-yellow-500" />
4132
4193
  * ```
4133
4194
  */
4134
- declare const UnderlineIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<UnderlineIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
4195
+ declare const StarIcon: react.MemoExoticComponent<({ fillPercentage, ...props }: StarIconProps) => react_jsx_runtime.JSX.Element>;
4135
4196
 
4136
- export { AlignCenterIcon, type AlignCenterIconProps, AlignLeftIcon, type AlignLeftIconProps, AlignRightIcon, type AlignRightIconProps, AppLogo, AuthPrompt, type AuthPromptProps, AvatarPlaceholder, type AvatarPlaceholderCategory, type AvatarPlaceholderProps, type AvatarPlaceholderVariant, BackToTop, type BackToTopProps, type BasicFileValidationError, BoldIcon, type BoldIconProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CampaignLogo, CaptureIcon, type CaptureIconProps, CelebrationModal, type CelebrationModalProps, CheckBox, CheckBoxGroup, type CheckBoxGroupOption, type CheckBoxGroupProps, type CheckBoxProps, CheckIcon, type CheckIconProps, CloseIcon, type CloseIconProps, CopyIcon, type CopyIconProps, Countdown, type CountdownProps, type CountdownSize, type CountdownTimeValues, type CountdownUnit, CropIcon, type CropIconProps, type CroppedImageResult, DateInput, type DateInputMode, type DateInputProps, DatePicker, type DatePickerMode, type DatePickerProps, type DefaultAssetCategory, type DefaultAssetComponent, type DefaultAssetProps, type DefaultAssetVariant, type DefaultAssets, DeleteIcon, type DeleteIconProps, DiscordIcon, type DiscordIconProps, Divider, type DividerProps, type DividerVariant, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, EditIcon, type EditIconProps, ErrorIcon, type ErrorIconProps, EyeIcon, type EyeIconProps, EyeSlashIcon, type EyeSlashIconProps, FacebookIcon, type FacebookIconProps, type FieldErrorLike, FileIcon, type FileIconProps, FileUpload, type FileUploadError, type FileUploadFile, FileUploadIcon, type FileUploadIconProps, type FileUploadIconType, type FileUploadProps, type FileUploadSize, type FileUploadVariant, Form, type FormErrorItem, FormErrorSummary, type FormErrorSummaryProps, FormField, type FormFieldProps, type FormProps, type GetCroppedImgOptions, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GroupAvatar, IconBigLogo, IconLogo, ImageCrop, ImageCropModal, type ImageCropModalProps, type ImageCropProps, ImageIcon, type ImageIconProps, ImagePlaceholder, type ImageSourceMode, ImageUploadIcon, type ImageUploadIconProps, IndeterminateIcon, type IndeterminateIconProps, InfoIcon, type InfoIconProps, Input, type InputProps, type InputVariant, InsertImageIcon, type InsertImageIconProps, InsertVideoIcon, type InsertVideoIconProps, InstagramIcon, type InstagramIconProps, ItalicIcon, type ItalicIconProps, KakaoTalkIcon, type KakaoTalkIconProps, LineIcon, type LineIconProps, LinkIcon, type LinkIconProps, LinkedInIcon, type LinkedInIconProps, ListBulletIcon, type ListBulletIconProps, ListIcon, type ListIconProps, ListNumberIcon, type ListNumberIconProps, LoadingScreen, type LoadingScreenProps, LoadingSpinner, type LoadingSpinnerProps, Logo, type LogoAssetComponent, type LogoAssetProps, type LogoAssets, type LogoFormat, type LogoProps, type LogoVariant, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PlusIcon, type PlusIconProps, ProfileAvatar, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, Rating, type RatingProps, RedditIcon, type RedditIconProps, ResetIcon, type ResetIconProps, RichTextEditor, type RichTextEditorProps, RichTextViewer, type RichTextViewerProps, RotateLeftIcon, type RotateLeftIconProps, RotateRightIcon, type RotateRightIconProps, ScalablyUIProvider, type ScalablyUIProviderProps, SearchIcon, type SearchIconProps, SearchInput, type SearchInputProps, type SearchInputVariant, Select, type SelectOption, type SelectProps, type SelectVariant, SettingsIcon, type SettingsIconProps, SignalIcon, type SignalIconProps, Skeleton, type SkeletonProps, type SkeletonSize, SkeletonText, type SkeletonTextProps, type SkeletonVariant, SlackIcon, type SlackIconProps, StarIcon, type StarIconProps, StatusBadge, type StatusBadgeProps, type StatusBadgeSize, type StatusBadgeStatus, type StatusBadgeVariant, SuccessIcon, type SuccessIconProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TelegramIcon, type TelegramIconProps, TickIcon, type TickIconProps, TiktokIcon, type TiktokIconProps, TimePicker, type TimePickerProps, ToFirstIcon, type ToFirstIconProps, ToLastIcon, type ToLastIconProps, ToNextIcon, type ToNextIconProps, ToPreviousIcon, type ToPreviousIconProps, Toast, type ToastAction, ToastContainer, type ToastContainerProps, type ToastPosition, type ToastProps, type ToastStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, TranslateIcon, type TranslateIconProps, TwitchIcon, type TwitchIconProps, UnderlineIcon, type UnderlineIconProps, VideoIcon, type VideoIconProps, VideoUploadIcon, type VideoUploadIconProps, type ViewMode, ViewToggle, type ViewToggleProps, WarnIcon, type WarnIconProps, WelcomeBackground, type WelcomeBackgroundProps, WhatsAppIcon, type WhatsAppIconProps, XIcon, type XIconProps, YoutubeIcon, type YoutubeIconProps, clampDate, cn, daysGrid, debounce, defaultAssets, extensionToMimeType, fieldErrorToProps, formatAcceptedFileTypes, formatDateLocalized, getCroppedImg, logoAssets, mimeTypeToDisplayName, monthsForLocale, normalizeAcceptedFileTypes, scopeClass, throttle, toDateKey, validateFileTypeAndSize, weekdaysForLocale, welcomeAssets, zodErrorsToSummary };
4197
+ export { AlignCenterIcon, type AlignCenterIconProps, AlignLeftIcon, type AlignLeftIconProps, AlignRightIcon, type AlignRightIconProps, AppLogo, AuthPrompt, type AuthPromptProps, AvatarPlaceholder, type AvatarPlaceholderCategory, type AvatarPlaceholderProps, type AvatarPlaceholderVariant, BackToTop, type BackToTopProps, type BasicFileValidationError, BoldIcon, type BoldIconProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CampaignLogo, CaptureIcon, type CaptureIconProps, CelebrationModal, type CelebrationModalProps, CheckBox, CheckBoxGroup, type CheckBoxGroupOption, type CheckBoxGroupProps, type CheckBoxProps, CheckIcon, type CheckIconProps, CloseIcon, type CloseIconProps, CopyIcon, type CopyIconProps, Countdown, type CountdownProps, type CountdownSize, type CountdownTimeValues, type CountdownUnit, CropIcon, type CropIconProps, type CroppedImageResult, DateInput, type DateInputMode, type DateInputProps, DatePicker, type DatePickerMode, type DatePickerProps, type DefaultAssetCategory, type DefaultAssetComponent, type DefaultAssetProps, type DefaultAssetVariant, type DefaultAssets, DeleteIcon, type DeleteIconProps, DiscordIcon, type DiscordIconProps, Divider, type DividerProps, type DividerVariant, DownloadIcon, type DownloadIconProps, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, EditIcon, type EditIconProps, ErrorIcon, type ErrorIconProps, EyeIcon, type EyeIconProps, EyeSlashIcon, type EyeSlashIconProps, FacebookIcon, type FacebookIconProps, type FieldErrorLike, FileIcon, type FileIconProps, FileUpload, type FileUploadError, type FileUploadFile, FileUploadIcon, type FileUploadIconProps, type FileUploadIconType, type FileUploadProps, type FileUploadSize, type FileUploadVariant, FilterIcon, type FilterIconProps, Form, type FormErrorItem, FormErrorSummary, type FormErrorSummaryProps, FormField, type FormFieldProps, type FormProps, type GetCroppedImgOptions, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GroupAvatar, IconBigLogo, IconLogo, type IconProps, ImageCrop, ImageCropModal, type ImageCropModalProps, type ImageCropProps, ImageIcon, type ImageIconProps, ImagePlaceholder, type ImageSourceMode, ImageUploadIcon, type ImageUploadIconProps, IndeterminateIcon, type IndeterminateIconProps, InfoIcon, type InfoIconProps, Input, type InputProps, type InputVariant, InsertImageIcon, type InsertImageIconProps, InsertVideoIcon, type InsertVideoIconProps, InstagramIcon, type InstagramIconProps, ItalicIcon, type ItalicIconProps, KakaoTalkIcon, type KakaoTalkIconProps, LineIcon, type LineIconProps, LinkIcon, type LinkIconProps, LinkedInIcon, type LinkedInIconProps, ListBulletIcon, type ListBulletIconProps, ListIcon, type ListIconProps, ListNumberIcon, type ListNumberIconProps, LoadingScreen, type LoadingScreenProps, LoadingSpinner, type LoadingSpinnerProps, Logo, type LogoAssetComponent, type LogoAssetProps, type LogoAssets, type LogoFormat, type LogoProps, type LogoVariant, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PlusIcon, type PlusIconProps, ProfileAvatar, ProgressBar, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, Rating, type RatingProps, RedditIcon, type RedditIconProps, ResetIcon, type ResetIconProps, RichTextEditor, type RichTextEditorProps, RichTextViewer, type RichTextViewerProps, RotateLeftIcon, type RotateLeftIconProps, RotateRightIcon, type RotateRightIconProps, ScalablyUIProvider, type ScalablyUIProviderProps, SearchIcon, type SearchIconProps, SearchInput, type SearchInputProps, type SearchInputVariant, Select, type SelectOption, type SelectProps, type SelectVariant, SettingsIcon, type SettingsIconProps, SignalIcon, type SignalIconProps, Skeleton, type SkeletonProps, type SkeletonSize, SkeletonText, type SkeletonTextProps, type SkeletonVariant, SlackIcon, type SlackIconProps, StarIcon, type StarIconProps, StatusBadge, type StatusBadgeProps, type StatusBadgeSize, type StatusBadgeStatus, type StatusBadgeVariant, SuccessIcon, type SuccessIconProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, TelegramIcon, type TelegramIconProps, TickIcon, type TickIconProps, TiktokIcon, type TiktokIconProps, TimePicker, type TimePickerProps, ToFirstIcon, type ToFirstIconProps, ToLastIcon, type ToLastIconProps, ToNextIcon, type ToNextIconProps, ToPreviousIcon, type ToPreviousIconProps, Toast, type ToastAction, ToastContainer, type ToastContainerProps, type ToastPosition, type ToastProps, type ToastStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, TranslateIcon, type TranslateIconProps, TwitchIcon, type TwitchIconProps, UnderlineIcon, type UnderlineIconProps, VideoIcon, type VideoIconProps, VideoUploadIcon, type VideoUploadIconProps, type ViewMode, ViewToggle, type ViewToggleProps, WarnIcon, type WarnIconProps, WelcomeBackground, type WelcomeBackgroundProps, WhatsAppIcon, type WhatsAppIconProps, XIcon, type XIconProps, YoutubeIcon, type YoutubeIconProps, clampDate, cn, daysGrid, debounce, defaultAssets, extensionToMimeType, fieldErrorToProps, formatAcceptedFileTypes, formatDateLocalized, getCroppedImg, logoAssets, mimeTypeToDisplayName, monthsForLocale, normalizeAcceptedFileTypes, scopeClass, throttle, toDateKey, validateFileTypeAndSize, weekdaysForLocale, welcomeAssets, zodErrorsToSummary };