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