mostly working

This commit is contained in:
Michael Freno
2026-01-07 17:53:21 -05:00
parent 5b0f6dba0f
commit 6a934880f9
13 changed files with 772 additions and 188 deletions

View File

@@ -5,7 +5,6 @@ interface CountdownCircleTimerProps {
initialRemainingTime?: number;
size: number;
strokeWidth: number;
colors: string;
children: (props: { remainingTime: number }) => any;
onComplete?: () => void;
isPlaying?: boolean;
@@ -106,7 +105,7 @@ const CountdownCircleTimer: Component<CountdownCircleTimerProps> = (props) => {
cy={props.size / 2}
r={radius}
fill="none"
stroke={props.colors}
stroke={`var(--color-blue)`}
stroke-width={props.strokeWidth}
stroke-dasharray={`${circumference}`}
stroke-dashoffset={`${strokeDashoffset()}`}