mostly working

This commit is contained in:
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()}`}

View File

@@ -143,7 +143,6 @@ export default function DeletionForm() {
initialRemainingTime={countDown()}
size={48}
strokeWidth={6}
colors="#60a5fa"
>
{renderTime}
</CountdownCircleTimer>