@sirsluginston/sharedui 2.0.25 → 2.0.26

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.ts CHANGED
@@ -33,6 +33,8 @@ declare interface BadgeProps {
33
33
  size?: 'sm' | 'md';
34
34
  }
35
35
 
36
+ export declare const BellIcon: ({ size, color, className, style }: IconProps) => JSX_2.Element;
37
+
36
38
  /**
37
39
  * Brand Configuration
38
40
  *
@@ -221,6 +223,13 @@ declare interface HeroProps {
221
223
  };
222
224
  }
223
225
 
226
+ declare interface IconProps {
227
+ size?: number;
228
+ color?: string;
229
+ className?: string;
230
+ style?: default_2.CSSProperties;
231
+ }
232
+
224
233
  export declare const InfoSidebar: default_2.FC<InfoSidebarProps>;
225
234
 
226
235
  declare interface InfoSidebarProps {
@@ -255,6 +264,8 @@ declare interface ModalProps {
255
264
  showCloseButton?: boolean;
256
265
  }
257
266
 
267
+ export declare const MoonIcon: ({ size, color, className, style }: IconProps) => JSX_2.Element;
268
+
258
269
  export declare const NationPage: default_2.FC<NationPageProps>;
259
270
 
260
271
  export declare interface NationPageData {
@@ -307,6 +318,8 @@ export declare interface ScoreConfig {
307
318
  betaDisclaimer?: boolean;
308
319
  }
309
320
 
321
+ export declare const SettingsIcon: ({ size, color, className, style }: IconProps) => JSX_2.Element;
322
+
310
323
  export declare const Shell: default_2.FC<ShellProps>;
311
324
 
312
325
  declare interface ShellProps {
@@ -378,6 +391,8 @@ declare interface StatGridProps {
378
391
  columns?: 2 | 3 | 4;
379
392
  }
380
393
 
394
+ export declare const SunIcon: ({ size, color, className, style }: IconProps) => JSX_2.Element;
395
+
381
396
  declare interface Tab {
382
397
  id: string;
383
398
  label: string;
@@ -414,6 +429,8 @@ declare interface TooltipProps {
414
429
  delay?: number;
415
430
  }
416
431
 
432
+ export declare const UserIcon: ({ size, color, className, style }: IconProps) => JSX_2.Element;
433
+
417
434
  export declare function useTheme(brandConfig: BrandConfig): {
418
435
  darkMode: boolean;
419
436
  toggleDarkMode: () => void;