aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
Diffstat (limited to 'packages')
-rw-r--r--packages/instant/src/components/ui/spinner.tsx18
1 files changed, 9 insertions, 9 deletions
diff --git a/packages/instant/src/components/ui/spinner.tsx b/packages/instant/src/components/ui/spinner.tsx
index 7abf24256..28ebc2598 100644
--- a/packages/instant/src/components/ui/spinner.tsx
+++ b/packages/instant/src/components/ui/spinner.tsx
@@ -3,26 +3,26 @@ import * as React from 'react';
import { FullRotation } from '../animations/full_rotation';
export interface SpinnerProps {
- pxWidth: number;
- pxHeight: number;
+ widthPx: number;
+ heightPx: number;
}
export const Spinner: React.StatelessComponent<SpinnerProps> = props => {
return (
- <FullRotation width={`${props.pxWidth}px`} height={`${props.pxHeight}px`}>
+ <FullRotation width={`${props.widthPx}px`} height={`${props.heightPx}px`}>
<svg
- width={props.pxWidth}
- height={props.pxHeight}
+ width={props.widthPx}
+ height={props.heightPx}
viewBox="0 0 34 34"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
- <circle cx="17" cy="17" r="15" stroke="white" stroke-opacity="0.2" stroke-width="4" />
+ <circle cx="17" cy="17" r="15" stroke="white" strokeOpacity="0.2" strokeWidth="4" />
<path
d="M17 32C25.2843 32 32 25.2843 32 17C32 8.71573 25.2843 2 17 2"
stroke="white"
- stroke-width="4"
- stroke-linecap="round"
- stroke-linejoin="round"
+ strokeWidth="4"
+ strokeLinecap="round"
+ strokeLinejoin="round"
/>
</svg>
</FullRotation>
cea52f62ff063f249'>. Update to 0.9.19.glewis2004-11-053-5/+5 * Update to version 0.9.18krion2004-08-085-36/+34 * Chase the glib20 update, and bump all affected ports' PORTREVISIONs.marcus2004-04-051-0/+1 * - Update to version 0.9.16krion2004-02-292-4/+3 * Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.marcus2004-02-041-0/+1 * - Update to 0.9.15pav2004-02-034-24/+13 * SIZEify.trevor2004-01-301-0/+1 * - Chase raptor shlib version raise.pav2004-01-031-1/+1 * - Update to version 0.9.14krion2003-09-245-16/+35 * - Update to version 0.9.13krion2003-09-024-75/+24 * - don't clobber any given LDFLAGSdinoex2003-09-011-2/+2 * Oops, forgot this in the last commit -petef2003-05-181-0/+15 * Update to 0.9.12.petef2003-05-184-20/+69 * De-pkg-comment.knu2003-02-212-1/+1 * Add missing @dirrmkris2003-01-141-0/+1 * chase gdbm lib versionijliao2003-01-031-1/+1 * o Rollback PORTCOMMENT modifications while this feature's implementationlioux2002-11-112-2/+1 * Use PORTCOMMENT in the Makefile, and whack the pkg-comment.adamw2002-11-072-1/+2 * Bump PORTREVISION and expat shlib.kuriyama2002-09-171-2/+2 * BerkeleyDB cleanup - stage 3ade2002-08-231-1/+1 * Bump portrevision (textproc/expat2 shlib bump).kuriyama2002-07-211-1/+2 * Update to version 0.9.11demon2002-07-164-9/+33