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