Seven-day workflow health card with stacked emerald success and rose failure bars, a success rate headline, and totals footer.
Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.
import { Automation18 } from "@/components/beste/piece/automation18";
<Automation18
title="Last 7 days"
days={[
{
"label": "Mon",
"success": 38,
"failed": 0
},
{
"label": "Tue",
"success": 42,
"failed": 1
},
{
"label": "Wed",
"success": 51,
"failed": 0
},
{
"label": "Thu",
"success": 33,
"failed": 2
},
{
"label": "Fri",
"success": 48,
"failed": 0
},
{
"label": "Sat",
"success": 29,
"failed": 1
},
{
"label": "Sun",
"success": 43,
"failed": 1
}
]}
runsSuffix="runs"
failedSuffix="failed"
/>