@chloe0592/pebble 0.1.1 → 0.1.3
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 +3 -0
- package/dist/pebble.es.js +424 -416
- package/dist/pebble.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -129,10 +129,13 @@ export declare type SelectSize = 'sm' | 'md' | 'lg';
|
|
|
129
129
|
|
|
130
130
|
export declare const Spinner: default_2.ForwardRefExoticComponent<SpinnerProps & default_2.RefAttributes<SVGSVGElement>>;
|
|
131
131
|
|
|
132
|
+
declare type SpinnerColor = 'indigo' | 'white';
|
|
133
|
+
|
|
132
134
|
export declare interface SpinnerProps {
|
|
133
135
|
size?: SpinnerSize;
|
|
134
136
|
label?: string;
|
|
135
137
|
className?: string;
|
|
138
|
+
color?: SpinnerColor;
|
|
136
139
|
}
|
|
137
140
|
|
|
138
141
|
export declare type SpinnerSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|