aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/ui
diff options
context:
space:
mode:
Diffstat (limited to 'packages/instant/src/components/ui')
-rw-r--r--packages/instant/src/components/ui/spinner.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/instant/src/components/ui/spinner.tsx b/packages/instant/src/components/ui/spinner.tsx
index e5d2808f3..7abf24256 100644
--- a/packages/instant/src/components/ui/spinner.tsx
+++ b/packages/instant/src/components/ui/spinner.tsx
@@ -3,15 +3,15 @@ import * as React from 'react';
import { FullRotation } from '../animations/full_rotation';
export interface SpinnerProps {
- width: number;
- height: number;
+ pxWidth: number;
+ pxHeight: number;
}
export const Spinner: React.StatelessComponent<SpinnerProps> = props => {
return (
- <FullRotation>
+ <FullRotation width={`${props.pxWidth}px`} height={`${props.pxHeight}px`}>
<svg
- width={props.width}
- height={props.height}
+ width={props.pxWidth}
+ height={props.pxHeight}
viewBox="0 0 34 34"
fill="none"
xmlns="http://www.w3.org/2000/svg"