@ryanodd/design-system 0.2.0-dev1 → 0.2.0-dev2
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/cjs/index.js +6 -6
- package/dist/esm/index.d.ts +7 -0
- package/dist/esm/index.js +745 -739
- package/package.json +1 -1
package/dist/esm/index.d.ts
CHANGED
|
@@ -193,6 +193,9 @@ export declare const IconMap: {
|
|
|
193
193
|
Signpost: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & {
|
|
194
194
|
size?: (typeof iconSizes)[number];
|
|
195
195
|
} & RefAttributes<SVGSVGElement>>;
|
|
196
|
+
Sun: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & {
|
|
197
|
+
size?: (typeof iconSizes)[number];
|
|
198
|
+
} & RefAttributes<SVGSVGElement>>;
|
|
196
199
|
SunMoon: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & {
|
|
197
200
|
size?: (typeof iconSizes)[number];
|
|
198
201
|
} & RefAttributes<SVGSVGElement>>;
|
|
@@ -350,6 +353,10 @@ export declare type SpinnerProps = ComponentPropsWithoutRef<"div"> & {
|
|
|
350
353
|
|
|
351
354
|
export declare type SpinnerSize = typeof iconSizes[number];
|
|
352
355
|
|
|
356
|
+
export declare const Sun: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & {
|
|
357
|
+
size?: (typeof iconSizes)[number];
|
|
358
|
+
} & RefAttributes<SVGSVGElement>>;
|
|
359
|
+
|
|
353
360
|
export declare const SunMoon: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & {
|
|
354
361
|
size?: (typeof iconSizes)[number];
|
|
355
362
|
} & RefAttributes<SVGSVGElement>>;
|