<Countdown duration={60} prefix="remaining time: " suffix=" seconds" />

Property Name | Type | Description | Default value |
duration ★ | number | Total Countdown Duration (Seconds) | - |
prefix | string | Countdown prefix text | - |
suffix | string | Countdown suffix text | - |
size | "xs" | "sm" | "md" | "lg" | "xl" | Component size (align with Text) | "md" |
color | string | ThemeColor | text color | - |
onComplete | ActionConfig | Action triggered when countdown ends | - |
color property supports the following types:"text-primary", "text-secondary"."blue-500", "red-600"."#FF0000", "rgb(255, 0, 0)".{ "light": "#000000", "dark": "#FFFFFF" }.<Card><Title value="limited time offer" /><Countdownduration={3600}prefix="Countdown to end : "size="lg"color={{ light: "#E34D59", dark: "#F66F6A" }}onComplete={{type: "show_message",payload: { message: "Promotion stopped" }}}/></Card>

Feedback