@octavius2929-personal/design-system 1.1.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1652,6 +1652,21 @@ interface IconProps extends SVGProps<SVGSVGElement> {
1652
1652
  size?: number;
1653
1653
  /** Grosor de trazo. Por defecto 1.75. */
1654
1654
  strokeWidth?: number;
1655
+ /**
1656
+ * Nombre accesible del icono. Reutiliza el atributo nativo `title` de
1657
+ * `SVGProps` (mismo nombre que `IconButtonProps.title`) en vez de sumar un
1658
+ * prop nuevo con semántica solapada.
1659
+ *
1660
+ * - **Presente** → el icono es informativo: pierde `aria-hidden`, gana
1661
+ * `role="img"` + `aria-label={title}` (los lectores de pantalla lo
1662
+ * anuncian). Usalo cuando el icono ES el contenido — sin texto visible
1663
+ * al lado que ya lo describa (p.ej. un botón solo-icono, un indicador de
1664
+ * estado).
1665
+ * - **Ausente (default)** → el icono es decorativo: `aria-hidden="true"`,
1666
+ * sin rol ni nombre accesible. Es el caso normal cuando el icono
1667
+ * acompaña un texto/label visible que ya transmite el significado.
1668
+ */
1669
+ title?: string;
1655
1670
  }
1656
1671
  type Icon = (props: IconProps) => ReactElement;
1657
1672
 
@@ -1665,6 +1680,12 @@ interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
1665
1680
  startIcon?: Icon;
1666
1681
  endIcon?: Icon;
1667
1682
  full?: boolean;
1683
+ /** No interactivo mientras carga: no dispara onClick, expone aria-busy y muestra un
1684
+ * spinner sin cambiar el tamaño del botón (el label queda reservado, solo oculto). */
1685
+ loading?: boolean;
1686
+ /** Estado "elegido" persistente (p.ej. una opción de quiz ya marcada). Distinto del hover/
1687
+ * focus transitorios; expone aria-pressed. */
1688
+ selected?: boolean;
1668
1689
  /** Segmento de contexto para el data-testid (no es un override del id completo). */
1669
1690
  testId?: string;
1670
1691
  }
@@ -2046,225 +2067,227 @@ interface ListItemProps extends HTMLAttributes<HTMLDivElement> {
2046
2067
 
2047
2068
  declare const ListItem: react.ForwardRefExoticComponent<ListItemProps & react.RefAttributes<HTMLDivElement>>;
2048
2069
 
2049
- declare function AlertCircleIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2070
+ declare function AlertCircleIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2071
+
2072
+ declare function ArchiveIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2050
2073
 
2051
- declare function ArchiveIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2074
+ declare function ArrowDownIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2052
2075
 
2053
- declare function ArrowDownIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2076
+ declare function ArrowLeftIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2054
2077
 
2055
- declare function ArrowLeftIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2078
+ declare function ArrowRightIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2056
2079
 
2057
- declare function ArrowRightIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2080
+ declare function ArrowUpIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2058
2081
 
2059
- declare function ArrowUpIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2082
+ declare function AtSignIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2060
2083
 
2061
- declare function AtSignIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2084
+ declare function BellIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2062
2085
 
2063
- declare function BellIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2086
+ declare function BellOffIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2064
2087
 
2065
- declare function BellOffIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2088
+ declare function BookmarkIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2066
2089
 
2067
- declare function BookmarkIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2090
+ declare function CalendarIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2068
2091
 
2069
- declare function CalendarIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2092
+ declare function CameraIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2070
2093
 
2071
- declare function CameraIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2094
+ declare function CheckIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2072
2095
 
2073
- declare function CheckIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2096
+ declare function ChevronDownIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2074
2097
 
2075
- declare function ChevronDownIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2098
+ declare function ChevronLeftIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2076
2099
 
2077
- declare function ChevronLeftIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2100
+ declare function ChevronRightIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2078
2101
 
2079
- declare function ChevronRightIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2102
+ declare function ChevronUpIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2080
2103
 
2081
- declare function ChevronUpIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2104
+ declare function ChevronsLeftIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2082
2105
 
2083
- declare function ChevronsLeftIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2106
+ declare function ChevronsRightIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2084
2107
 
2085
- declare function ChevronsRightIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2108
+ declare function CircleCheckIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2086
2109
 
2087
- declare function CircleCheckIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2110
+ declare function CircleXIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2088
2111
 
2089
- declare function CircleXIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2112
+ declare function ClipboardIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2090
2113
 
2091
- declare function ClipboardIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2114
+ declare function ClockIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2092
2115
 
2093
- declare function ClockIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2116
+ declare function CloudIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2094
2117
 
2095
- declare function CloudIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2118
+ declare function CopyIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2096
2119
 
2097
- declare function CopyIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2120
+ declare function CornerDownRightIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2098
2121
 
2099
- declare function CornerDownRightIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2122
+ declare function CreditCardIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2100
2123
 
2101
- declare function CreditCardIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2124
+ declare function DollarSignIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2102
2125
 
2103
- declare function DollarSignIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2126
+ declare function DownloadIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2104
2127
 
2105
- declare function DownloadIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2128
+ declare function ExternalLinkIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2106
2129
 
2107
- declare function ExternalLinkIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2130
+ declare function EyeIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2108
2131
 
2109
- declare function EyeIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2132
+ declare function EyeOffIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2110
2133
 
2111
- declare function EyeOffIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2134
+ declare function FileIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2112
2135
 
2113
- declare function FileIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2136
+ declare function FileTextIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2114
2137
 
2115
- declare function FileTextIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2138
+ declare function FilterIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2116
2139
 
2117
- declare function FilterIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2140
+ declare function FingerprintIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2118
2141
 
2119
- declare function FingerprintIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2142
+ declare function FolderIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2120
2143
 
2121
- declare function FolderIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2144
+ declare function FolderOpenIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2122
2145
 
2123
- declare function FolderOpenIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2146
+ declare function GiftIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2124
2147
 
2125
- declare function GiftIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2148
+ declare function GitHubIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2126
2149
 
2127
- declare function GlobeIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2150
+ declare function GlobeIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2128
2151
 
2129
- declare function GridIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2152
+ declare function GridIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2130
2153
 
2131
- declare function HeartIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2154
+ declare function HeartIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2132
2155
 
2133
- declare function HelpCircleIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2156
+ declare function HelpCircleIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2134
2157
 
2135
- declare function HomeIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2158
+ declare function HomeIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2136
2159
 
2137
- declare function ImageIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2160
+ declare function ImageIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2138
2161
 
2139
- declare function InboxIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2162
+ declare function InboxIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2140
2163
 
2141
- declare function InfoIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2164
+ declare function InfoIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2142
2165
 
2143
- declare function KeyIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2166
+ declare function KeyIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2144
2167
 
2145
- declare function LayoutIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2168
+ declare function LayoutIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2146
2169
 
2147
- declare function LinkIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2170
+ declare function LinkIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2148
2171
 
2149
- declare function ListIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2172
+ declare function ListIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2150
2173
 
2151
- declare function LoaderIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2174
+ declare function LoaderIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2152
2175
 
2153
- declare function LockIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2176
+ declare function LockIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2154
2177
 
2155
- declare function LogInIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2178
+ declare function LogInIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2156
2179
 
2157
- declare function LogOutIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2180
+ declare function LogOutIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2158
2181
 
2159
- declare function MailIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2182
+ declare function MailIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2160
2183
 
2161
- declare function MapPinIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2184
+ declare function MapPinIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2162
2185
 
2163
- declare function MaximizeIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2186
+ declare function MaximizeIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2164
2187
 
2165
- declare function MenuIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2188
+ declare function MenuIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2166
2189
 
2167
- declare function MessageCircleIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2190
+ declare function MessageCircleIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2168
2191
 
2169
- declare function MessageSquareIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2192
+ declare function MessageSquareIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2170
2193
 
2171
- declare function MicIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2194
+ declare function MicIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2172
2195
 
2173
- declare function MinimizeIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2196
+ declare function MinimizeIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2174
2197
 
2175
- declare function MinusIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2198
+ declare function MinusIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2176
2199
 
2177
- declare function MoonIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2200
+ declare function MoonIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2178
2201
 
2179
- declare function MoreHorizontalIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2202
+ declare function MoreHorizontalIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2180
2203
 
2181
- declare function MoreVerticalIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2204
+ declare function MoreVerticalIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2182
2205
 
2183
- declare function PackageIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2206
+ declare function PackageIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2184
2207
 
2185
- declare function PaperclipIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2208
+ declare function PaperclipIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2186
2209
 
2187
- declare function PauseIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2210
+ declare function PauseIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2188
2211
 
2189
- declare function PencilIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2212
+ declare function PencilIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2190
2213
 
2191
- declare function PhoneIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2214
+ declare function PhoneIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2192
2215
 
2193
- declare function PlayIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2216
+ declare function PlayIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2194
2217
 
2195
- declare function PlusIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2218
+ declare function PlusIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2196
2219
 
2197
- declare function PrinterIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2220
+ declare function PrinterIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2198
2221
 
2199
- declare function RedoIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2222
+ declare function RedoIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2200
2223
 
2201
- declare function RefreshCwIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2224
+ declare function RefreshCwIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2202
2225
 
2203
- declare function SaveIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2226
+ declare function SaveIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2204
2227
 
2205
- declare function SearchIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2228
+ declare function SearchIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2206
2229
 
2207
- declare function SendIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2230
+ declare function SendIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2208
2231
 
2209
- declare function SettingsIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2232
+ declare function SettingsIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2210
2233
 
2211
- declare function ShareIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2234
+ declare function ShareIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2212
2235
 
2213
- declare function ShieldIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2236
+ declare function ShieldIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2214
2237
 
2215
- declare function ShieldCheckIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2238
+ declare function ShieldCheckIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2216
2239
 
2217
- declare function ShoppingBagIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2240
+ declare function ShoppingBagIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2218
2241
 
2219
- declare function ShoppingCartIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2242
+ declare function ShoppingCartIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2220
2243
 
2221
- declare function SidebarIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2244
+ declare function SidebarIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2222
2245
 
2223
- declare function SkipBackIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2246
+ declare function SkipBackIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2224
2247
 
2225
- declare function SkipForwardIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2248
+ declare function SkipForwardIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2226
2249
 
2227
- declare function SlidersIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2250
+ declare function SlidersIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2228
2251
 
2229
- declare function SmileIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2252
+ declare function SmileIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2230
2253
 
2231
- declare function StarIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2254
+ declare function StarIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2232
2255
 
2233
- declare function SunIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2256
+ declare function SunIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2234
2257
 
2235
- declare function TagIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2258
+ declare function TagIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2236
2259
 
2237
- declare function ThumbsDownIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2260
+ declare function ThumbsDownIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2238
2261
 
2239
- declare function ThumbsUpIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2262
+ declare function ThumbsUpIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2240
2263
 
2241
- declare function TrashIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2264
+ declare function TrashIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2242
2265
 
2243
- declare function TriangleAlertIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2266
+ declare function TriangleAlertIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2244
2267
 
2245
- declare function UndoIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2268
+ declare function UndoIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2246
2269
 
2247
- declare function UnlockIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2270
+ declare function UnlockIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2248
2271
 
2249
- declare function UploadIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2272
+ declare function UploadIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2250
2273
 
2251
- declare function UserIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2274
+ declare function UserIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2252
2275
 
2253
- declare function UserCheckIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2276
+ declare function UserCheckIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2254
2277
 
2255
- declare function UserPlusIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2278
+ declare function UserPlusIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2256
2279
 
2257
- declare function UsersIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2280
+ declare function UsersIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2258
2281
 
2259
- declare function Volume2Icon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2282
+ declare function Volume2Icon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2260
2283
 
2261
- declare function VolumeXIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2284
+ declare function VolumeXIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2262
2285
 
2263
- declare function WifiIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2286
+ declare function WifiIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2264
2287
 
2265
- declare function XIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2288
+ declare function XIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2266
2289
 
2267
- declare function ZapIcon({ size, strokeWidth, ...rest }: IconProps): react.JSX.Element;
2290
+ declare function ZapIcon({ size, strokeWidth, title, ...rest }: IconProps): react.JSX.Element;
2268
2291
 
2269
2292
  declare const iconCatalog: {
2270
2293
  name: string;
@@ -2306,4 +2329,4 @@ interface TestIdHandle {
2306
2329
  }
2307
2330
  declare function useTestId(type: string, ownTestId?: string): TestIdHandle;
2308
2331
 
2309
- export { Accordion, type AccordionItem, type AccordionProps, Alert, AlertCircleIcon, type AlertProps, type AlertSeverity, AppBar, type AppBarProps, ArchiveIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AtSignIcon, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeTone, BellIcon, BellOffIcon, BookmarkIcon, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, type ButtonSize, type ButtonTone, type ButtonVariant, CalendarIcon, CameraIcon, Card, type CardProps, type CardSectionProps, CheckIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsLeftIcon, ChevronsRightIcon, Chip, type ChipProps, type ChipTone, CircleCheckIcon, CircleXIcon, ClipboardIcon, ClockIcon, CloudIcon, type ColorTokens, Container, type ContainerProps, CopyIcon, CornerDownRightIcon, CreditCardIcon, type Crumb, Dialog, type DialogProps, Divider, type DividerProps, DollarSignIcon, DownloadIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FileIcon, FileTextIcon, FilterIcon, FingerprintIcon, FolderIcon, FolderOpenIcon, GiftIcon, GlobeIcon, GridIcon, HeartIcon, HelpCircleIcon, HomeIcon, type Icon, IconButton, type IconButtonProps, type IconButtonTone, type IconProps, ImageIcon, InboxIcon, InfoIcon, KeyIcon, LayoutIcon, LinkIcon, ListIcon, ListItem, type ListItemProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MapPinIcon, MaximizeIcon, Menu, MenuIcon, type MenuItemDef, type MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MinimizeIcon, MinusIcon, type Mode, type ModePreference, MoneyField, type MoneyFieldProps, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, PackageIcon, Pagination, type PaginationProps, PaperclipIcon, PasswordField, type PasswordFieldProps, PauseIcon, PencilIcon, PhoneIcon, PlayIcon, PlusIcon, PrinterIcon, Progress, type ProgressProps, type ProgressVariant, Radio, type RadioProps, RedoIcon, RefreshCwIcon, SaveIcon, type SchemaName, SearchIcon, Select, type SelectOption, type SelectProps, SendIcon, SettingsIcon, ShareIcon, ShieldCheckIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, Slider, type SliderProps, SlidersIcon, SmileIcon, Snackbar, type SnackbarProps, StarIcon, type Step, Stepper, type StepperProps, SunIcon, Surface, type SurfaceProps, Switch, type SwitchProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, TagIcon, type TestIdHandle, TestIdProvider, type TestIdProviderProps, TextField, type TextFieldProps, ThemeProvider, type ThemeProviderProps, ThumbsDownIcon, ThumbsUpIcon, Tooltip, type TooltipPlacement, type TooltipProps, TrashIcon, TriangleAlertIcon, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, UndoIcon, UnlockIcon, UploadIcon, UserCheckIcon, UserIcon, UserPlusIcon, UsersIcon, Volume2Icon, VolumeXIcon, WifiIcon, XIcon, ZapIcon, colorVars, iconCatalog, modeNames, schemaNames, vars as theme, themes, usePrevious, useTestId, useTheme, useToggle };
2332
+ export { Accordion, type AccordionItem, type AccordionProps, Alert, AlertCircleIcon, type AlertProps, type AlertSeverity, AppBar, type AppBarProps, ArchiveIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, AtSignIcon, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeTone, BellIcon, BellOffIcon, BookmarkIcon, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, type ButtonSize, type ButtonTone, type ButtonVariant, CalendarIcon, CameraIcon, Card, type CardProps, type CardSectionProps, CheckIcon, Checkbox, type CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsLeftIcon, ChevronsRightIcon, Chip, type ChipProps, type ChipTone, CircleCheckIcon, CircleXIcon, ClipboardIcon, ClockIcon, CloudIcon, type ColorTokens, Container, type ContainerProps, CopyIcon, CornerDownRightIcon, CreditCardIcon, type Crumb, Dialog, type DialogProps, Divider, type DividerProps, DollarSignIcon, DownloadIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FileIcon, FileTextIcon, FilterIcon, FingerprintIcon, FolderIcon, FolderOpenIcon, GiftIcon, GitHubIcon, GlobeIcon, GridIcon, HeartIcon, HelpCircleIcon, HomeIcon, type Icon, IconButton, type IconButtonProps, type IconButtonTone, type IconProps, ImageIcon, InboxIcon, InfoIcon, KeyIcon, LayoutIcon, LinkIcon, ListIcon, ListItem, type ListItemProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MapPinIcon, MaximizeIcon, Menu, MenuIcon, type MenuItemDef, type MenuProps, MessageCircleIcon, MessageSquareIcon, MicIcon, MinimizeIcon, MinusIcon, type Mode, type ModePreference, MoneyField, type MoneyFieldProps, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, PackageIcon, Pagination, type PaginationProps, PaperclipIcon, PasswordField, type PasswordFieldProps, PauseIcon, PencilIcon, PhoneIcon, PlayIcon, PlusIcon, PrinterIcon, Progress, type ProgressProps, type ProgressVariant, Radio, type RadioProps, RedoIcon, RefreshCwIcon, SaveIcon, type SchemaName, SearchIcon, Select, type SelectOption, type SelectProps, SendIcon, SettingsIcon, ShareIcon, ShieldCheckIcon, ShieldIcon, ShoppingBagIcon, ShoppingCartIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, Slider, type SliderProps, SlidersIcon, SmileIcon, Snackbar, type SnackbarProps, StarIcon, type Step, Stepper, type StepperProps, SunIcon, Surface, type SurfaceProps, Switch, type SwitchProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, TagIcon, type TestIdHandle, TestIdProvider, type TestIdProviderProps, TextField, type TextFieldProps, ThemeProvider, type ThemeProviderProps, ThumbsDownIcon, ThumbsUpIcon, Tooltip, type TooltipPlacement, type TooltipProps, TrashIcon, TriangleAlertIcon, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, UndoIcon, UnlockIcon, UploadIcon, UserCheckIcon, UserIcon, UserPlusIcon, UsersIcon, Volume2Icon, VolumeXIcon, WifiIcon, XIcon, ZapIcon, colorVars, iconCatalog, modeNames, schemaNames, vars as theme, themes, usePrevious, useTestId, useTheme, useToggle };