@scalably/ui 0.4.1 → 0.4.2
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 +143 -1
- package/dist/index.d.ts +143 -1
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +9 -9
package/dist/index.d.cts
CHANGED
|
@@ -2402,6 +2402,12 @@ interface CloseIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2402
2402
|
*/
|
|
2403
2403
|
declare const CloseIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<CloseIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
2404
2404
|
|
|
2405
|
+
interface CopyIconProps extends React.SVGProps<SVGSVGElement> {
|
|
2406
|
+
size?: number;
|
|
2407
|
+
className?: string;
|
|
2408
|
+
}
|
|
2409
|
+
declare const CopyIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<CopyIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
2410
|
+
|
|
2405
2411
|
interface DropdownIconProps extends React.SVGProps<SVGSVGElement> {
|
|
2406
2412
|
/** Size of the icon in pixels. Defaults to 24. */
|
|
2407
2413
|
size?: number;
|
|
@@ -3297,4 +3303,140 @@ interface YoutubeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3297
3303
|
*/
|
|
3298
3304
|
declare const YoutubeIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<YoutubeIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3299
3305
|
|
|
3300
|
-
|
|
3306
|
+
interface AlignCenterIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3307
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3308
|
+
size?: number;
|
|
3309
|
+
/** Additional CSS classes to apply to the icon */
|
|
3310
|
+
className?: string;
|
|
3311
|
+
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3312
|
+
strokeWidth?: number;
|
|
3313
|
+
}
|
|
3314
|
+
declare const AlignCenterIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<AlignCenterIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3315
|
+
|
|
3316
|
+
interface AlignLeftIconProps extends React.SVGProps<SVGSVGElement> {
|
|
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;
|
|
3321
|
+
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3322
|
+
strokeWidth?: number;
|
|
3323
|
+
}
|
|
3324
|
+
declare const AlignLeftIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<AlignLeftIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3325
|
+
|
|
3326
|
+
interface AlignRightIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3327
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3328
|
+
size?: number;
|
|
3329
|
+
/** Additional CSS classes to apply to the icon */
|
|
3330
|
+
className?: string;
|
|
3331
|
+
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3332
|
+
strokeWidth?: number;
|
|
3333
|
+
}
|
|
3334
|
+
declare const AlignRightIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<AlignRightIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3335
|
+
|
|
3336
|
+
interface BoldIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3337
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3338
|
+
size?: number;
|
|
3339
|
+
/** Additional CSS classes to apply to the icon */
|
|
3340
|
+
className?: string;
|
|
3341
|
+
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3342
|
+
strokeWidth?: number;
|
|
3343
|
+
}
|
|
3344
|
+
/**
|
|
3345
|
+
* Bold icon component - displays a bold icon.
|
|
3346
|
+
*
|
|
3347
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
3348
|
+
*
|
|
3349
|
+
* @example
|
|
3350
|
+
* ```tsx
|
|
3351
|
+
* import { BoldIcon } from '@scalably/ui';
|
|
3352
|
+
*
|
|
3353
|
+
* <BoldIcon size={16} className="sui-text-primary" />
|
|
3354
|
+
* ```
|
|
3355
|
+
*/
|
|
3356
|
+
declare const BoldIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<BoldIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3357
|
+
|
|
3358
|
+
interface InsertImageIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3359
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3360
|
+
size?: number;
|
|
3361
|
+
/** Additional CSS classes to apply to the icon */
|
|
3362
|
+
className?: string;
|
|
3363
|
+
}
|
|
3364
|
+
declare const InsertImageIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<InsertImageIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3365
|
+
|
|
3366
|
+
interface InsertVideoIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3367
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3368
|
+
size?: number;
|
|
3369
|
+
/** Additional CSS classes to apply to the icon */
|
|
3370
|
+
className?: string;
|
|
3371
|
+
}
|
|
3372
|
+
declare const InsertVideoIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<InsertVideoIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3373
|
+
|
|
3374
|
+
interface ItalicIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3375
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3376
|
+
size?: number;
|
|
3377
|
+
/** Additional CSS classes to apply to the icon */
|
|
3378
|
+
className?: string;
|
|
3379
|
+
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3380
|
+
strokeWidth?: number;
|
|
3381
|
+
}
|
|
3382
|
+
/**
|
|
3383
|
+
* Italic icon component - displays an italic icon.
|
|
3384
|
+
*
|
|
3385
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
3386
|
+
*
|
|
3387
|
+
* @example
|
|
3388
|
+
* ```tsx
|
|
3389
|
+
* import { ItalicIcon } from '@scalably/ui';
|
|
3390
|
+
*
|
|
3391
|
+
* <ItalicIcon size={16} className="sui-text-primary" />
|
|
3392
|
+
* ```
|
|
3393
|
+
*/
|
|
3394
|
+
declare const ItalicIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ItalicIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3395
|
+
|
|
3396
|
+
interface LinkIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3397
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3398
|
+
size?: number;
|
|
3399
|
+
/** Additional CSS classes to apply to the icon */
|
|
3400
|
+
className?: string;
|
|
3401
|
+
}
|
|
3402
|
+
declare const LinkIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<LinkIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3403
|
+
|
|
3404
|
+
interface ListBulletIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3405
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3406
|
+
size?: number;
|
|
3407
|
+
/** Additional CSS classes to apply to the icon */
|
|
3408
|
+
className?: string;
|
|
3409
|
+
}
|
|
3410
|
+
declare const ListBulletIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ListBulletIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3411
|
+
|
|
3412
|
+
interface ListNumberIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3413
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3414
|
+
size?: number;
|
|
3415
|
+
/** Additional CSS classes to apply to the icon */
|
|
3416
|
+
className?: string;
|
|
3417
|
+
}
|
|
3418
|
+
declare const ListNumberIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ListNumberIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3419
|
+
|
|
3420
|
+
interface UnderlineIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3421
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3422
|
+
size?: number;
|
|
3423
|
+
/** Additional CSS classes to apply to the icon */
|
|
3424
|
+
className?: string;
|
|
3425
|
+
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3426
|
+
strokeWidth?: number;
|
|
3427
|
+
}
|
|
3428
|
+
/**
|
|
3429
|
+
* Underline icon component - displays an underline icon.
|
|
3430
|
+
*
|
|
3431
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
3432
|
+
*
|
|
3433
|
+
* @example
|
|
3434
|
+
* ```tsx
|
|
3435
|
+
* import { UnderlineIcon } from '@scalably/ui';
|
|
3436
|
+
*
|
|
3437
|
+
* <UnderlineIcon size={16} className="sui-text-primary" />
|
|
3438
|
+
* ```
|
|
3439
|
+
*/
|
|
3440
|
+
declare const UnderlineIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<UnderlineIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3441
|
+
|
|
3442
|
+
export { AlignCenterIcon, type AlignCenterIconProps, AlignLeftIcon, type AlignLeftIconProps, AlignRightIcon, type AlignRightIconProps, AppLogo, AuthPrompt, type AuthPromptProps, AvatarPlaceholder, type AvatarPlaceholderCategory, type AvatarPlaceholderProps, type AvatarPlaceholderVariant, BackToTop, type BackToTopProps, BoldIcon, type BoldIconProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CampaignLogo, CaptureIcon, type CaptureIconProps, 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, DateInput, type DateInputMode, type DateInputProps, DatePicker, type DatePickerMode, type DatePickerProps, type DefaultAssetCategory, type DefaultAssetComponent, type DefaultAssetProps, type DefaultAssetVariant, type DefaultAssets, DiscordIcon, type DiscordIconProps, Divider, type DividerProps, type DividerVariant, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, ErrorIcon, type ErrorIconProps, 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, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GroupAvatar, IconBigLogo, IconLogo, 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, Logo, type LogoAssetComponent, type LogoAssetProps, type LogoAssets, type LogoFormat, type LogoProps, type LogoVariant, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PlusIcon, type PlusIconProps, ProfileAvatar, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, RedditIcon, type RedditIconProps, RichTextEditor, type RichTextEditorProps, RichTextViewer, type RichTextViewerProps, 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, StatusBadge, type StatusBadgeProps, type StatusBadgeSize, type StatusBadgeStatus, type StatusBadgeVariant, SuccessIcon, type SuccessIconProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TelegramIcon, type TelegramIconProps, TickIcon, type TickIconProps, TiktokIcon, type TiktokIconProps, TimePicker, type TimePickerProps, ToFirstIcon, type ToFirstIconProps, ToLastIcon, type ToLastIconProps, ToNextIcon, type ToNextIconProps, ToPreviousIcon, type ToPreviousIconProps, Toast, type ToastAction, ToastContainer, type ToastContainerProps, type ToastPosition, type ToastProps, type ToastStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, 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, fieldErrorToProps, formatDateLocalized, logoAssets, monthsForLocale, scopeClass, throttle, toDateKey, weekdaysForLocale, welcomeAssets, zodErrorsToSummary };
|
package/dist/index.d.ts
CHANGED
|
@@ -2402,6 +2402,12 @@ interface CloseIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
2402
2402
|
*/
|
|
2403
2403
|
declare const CloseIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<CloseIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
2404
2404
|
|
|
2405
|
+
interface CopyIconProps extends React.SVGProps<SVGSVGElement> {
|
|
2406
|
+
size?: number;
|
|
2407
|
+
className?: string;
|
|
2408
|
+
}
|
|
2409
|
+
declare const CopyIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<CopyIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
2410
|
+
|
|
2405
2411
|
interface DropdownIconProps extends React.SVGProps<SVGSVGElement> {
|
|
2406
2412
|
/** Size of the icon in pixels. Defaults to 24. */
|
|
2407
2413
|
size?: number;
|
|
@@ -3297,4 +3303,140 @@ interface YoutubeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
3297
3303
|
*/
|
|
3298
3304
|
declare const YoutubeIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<YoutubeIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3299
3305
|
|
|
3300
|
-
|
|
3306
|
+
interface AlignCenterIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3307
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3308
|
+
size?: number;
|
|
3309
|
+
/** Additional CSS classes to apply to the icon */
|
|
3310
|
+
className?: string;
|
|
3311
|
+
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3312
|
+
strokeWidth?: number;
|
|
3313
|
+
}
|
|
3314
|
+
declare const AlignCenterIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<AlignCenterIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3315
|
+
|
|
3316
|
+
interface AlignLeftIconProps extends React.SVGProps<SVGSVGElement> {
|
|
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;
|
|
3321
|
+
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3322
|
+
strokeWidth?: number;
|
|
3323
|
+
}
|
|
3324
|
+
declare const AlignLeftIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<AlignLeftIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3325
|
+
|
|
3326
|
+
interface AlignRightIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3327
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3328
|
+
size?: number;
|
|
3329
|
+
/** Additional CSS classes to apply to the icon */
|
|
3330
|
+
className?: string;
|
|
3331
|
+
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3332
|
+
strokeWidth?: number;
|
|
3333
|
+
}
|
|
3334
|
+
declare const AlignRightIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<AlignRightIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3335
|
+
|
|
3336
|
+
interface BoldIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3337
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3338
|
+
size?: number;
|
|
3339
|
+
/** Additional CSS classes to apply to the icon */
|
|
3340
|
+
className?: string;
|
|
3341
|
+
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3342
|
+
strokeWidth?: number;
|
|
3343
|
+
}
|
|
3344
|
+
/**
|
|
3345
|
+
* Bold icon component - displays a bold icon.
|
|
3346
|
+
*
|
|
3347
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
3348
|
+
*
|
|
3349
|
+
* @example
|
|
3350
|
+
* ```tsx
|
|
3351
|
+
* import { BoldIcon } from '@scalably/ui';
|
|
3352
|
+
*
|
|
3353
|
+
* <BoldIcon size={16} className="sui-text-primary" />
|
|
3354
|
+
* ```
|
|
3355
|
+
*/
|
|
3356
|
+
declare const BoldIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<BoldIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3357
|
+
|
|
3358
|
+
interface InsertImageIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3359
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3360
|
+
size?: number;
|
|
3361
|
+
/** Additional CSS classes to apply to the icon */
|
|
3362
|
+
className?: string;
|
|
3363
|
+
}
|
|
3364
|
+
declare const InsertImageIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<InsertImageIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3365
|
+
|
|
3366
|
+
interface InsertVideoIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3367
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3368
|
+
size?: number;
|
|
3369
|
+
/** Additional CSS classes to apply to the icon */
|
|
3370
|
+
className?: string;
|
|
3371
|
+
}
|
|
3372
|
+
declare const InsertVideoIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<InsertVideoIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3373
|
+
|
|
3374
|
+
interface ItalicIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3375
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3376
|
+
size?: number;
|
|
3377
|
+
/** Additional CSS classes to apply to the icon */
|
|
3378
|
+
className?: string;
|
|
3379
|
+
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3380
|
+
strokeWidth?: number;
|
|
3381
|
+
}
|
|
3382
|
+
/**
|
|
3383
|
+
* Italic icon component - displays an italic icon.
|
|
3384
|
+
*
|
|
3385
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
3386
|
+
*
|
|
3387
|
+
* @example
|
|
3388
|
+
* ```tsx
|
|
3389
|
+
* import { ItalicIcon } from '@scalably/ui';
|
|
3390
|
+
*
|
|
3391
|
+
* <ItalicIcon size={16} className="sui-text-primary" />
|
|
3392
|
+
* ```
|
|
3393
|
+
*/
|
|
3394
|
+
declare const ItalicIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ItalicIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3395
|
+
|
|
3396
|
+
interface LinkIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3397
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3398
|
+
size?: number;
|
|
3399
|
+
/** Additional CSS classes to apply to the icon */
|
|
3400
|
+
className?: string;
|
|
3401
|
+
}
|
|
3402
|
+
declare const LinkIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<LinkIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3403
|
+
|
|
3404
|
+
interface ListBulletIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3405
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3406
|
+
size?: number;
|
|
3407
|
+
/** Additional CSS classes to apply to the icon */
|
|
3408
|
+
className?: string;
|
|
3409
|
+
}
|
|
3410
|
+
declare const ListBulletIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ListBulletIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3411
|
+
|
|
3412
|
+
interface ListNumberIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3413
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3414
|
+
size?: number;
|
|
3415
|
+
/** Additional CSS classes to apply to the icon */
|
|
3416
|
+
className?: string;
|
|
3417
|
+
}
|
|
3418
|
+
declare const ListNumberIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<ListNumberIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3419
|
+
|
|
3420
|
+
interface UnderlineIconProps extends React.SVGProps<SVGSVGElement> {
|
|
3421
|
+
/** Size of the icon in pixels. Defaults to 16. */
|
|
3422
|
+
size?: number;
|
|
3423
|
+
/** Additional CSS classes to apply to the icon */
|
|
3424
|
+
className?: string;
|
|
3425
|
+
/** Stroke width of the icon in pixels. Defaults to 1.5. */
|
|
3426
|
+
strokeWidth?: number;
|
|
3427
|
+
}
|
|
3428
|
+
/**
|
|
3429
|
+
* Underline icon component - displays an underline icon.
|
|
3430
|
+
*
|
|
3431
|
+
* This icon uses `currentColor`, so it can be styled with Tailwind classes.
|
|
3432
|
+
*
|
|
3433
|
+
* @example
|
|
3434
|
+
* ```tsx
|
|
3435
|
+
* import { UnderlineIcon } from '@scalably/ui';
|
|
3436
|
+
*
|
|
3437
|
+
* <UnderlineIcon size={16} className="sui-text-primary" />
|
|
3438
|
+
* ```
|
|
3439
|
+
*/
|
|
3440
|
+
declare const UnderlineIcon: react.MemoExoticComponent<react.ForwardRefExoticComponent<Omit<UnderlineIconProps, "ref"> & react.RefAttributes<SVGSVGElement>>>;
|
|
3441
|
+
|
|
3442
|
+
export { AlignCenterIcon, type AlignCenterIconProps, AlignLeftIcon, type AlignLeftIconProps, AlignRightIcon, type AlignRightIconProps, AppLogo, AuthPrompt, type AuthPromptProps, AvatarPlaceholder, type AvatarPlaceholderCategory, type AvatarPlaceholderProps, type AvatarPlaceholderVariant, BackToTop, type BackToTopProps, BoldIcon, type BoldIconProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, CalendarIcon, type CalendarIconProps, CampaignLogo, CaptureIcon, type CaptureIconProps, 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, DateInput, type DateInputMode, type DateInputProps, DatePicker, type DatePickerMode, type DatePickerProps, type DefaultAssetCategory, type DefaultAssetComponent, type DefaultAssetProps, type DefaultAssetVariant, type DefaultAssets, DiscordIcon, type DiscordIconProps, Divider, type DividerProps, type DividerVariant, DropUpIcon, type DropUpIconProps, DropdownIcon, type DropdownIconProps, ErrorIcon, type ErrorIconProps, 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, GmailIcon, type GmailIconProps, GridIcon, type GridIconProps, GroupAvatar, IconBigLogo, IconLogo, 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, Logo, type LogoAssetComponent, type LogoAssetProps, type LogoAssets, type LogoFormat, type LogoProps, type LogoVariant, MessengerIcon, type MessengerIconProps, MinusIcon, type MinusIconProps, MultipleSelectionButton, type MultipleSelectionButtonProps, MultipleSelectionIcon, type MultipleSelectionIconProps, Pagination, type PaginationProps, PlusIcon, type PlusIconProps, ProfileAvatar, QuantityInput, type QuantityInputProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RangeValue, RedditIcon, type RedditIconProps, RichTextEditor, type RichTextEditorProps, RichTextViewer, type RichTextViewerProps, 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, StatusBadge, type StatusBadgeProps, type StatusBadgeSize, type StatusBadgeStatus, type StatusBadgeVariant, SuccessIcon, type SuccessIconProps, Switch, type SwitchProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TelegramIcon, type TelegramIconProps, TickIcon, type TickIconProps, TiktokIcon, type TiktokIconProps, TimePicker, type TimePickerProps, ToFirstIcon, type ToFirstIconProps, ToLastIcon, type ToLastIconProps, ToNextIcon, type ToNextIconProps, ToPreviousIcon, type ToPreviousIconProps, Toast, type ToastAction, ToastContainer, type ToastContainerProps, type ToastPosition, type ToastProps, type ToastStatus, Tooltip, type TooltipAlign, type TooltipProps, type TooltipSide, 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, fieldErrorToProps, formatDateLocalized, logoAssets, monthsForLocale, scopeClass, throttle, toDateKey, weekdaysForLocale, welcomeAssets, zodErrorsToSummary };
|