UNPKG

sanity-plugin-seo

Version:

Complete SEO toolkit for Sanity Studio with live scoring, AI suggestions, team workflows, and 30+ structured data types. Free and AI tiers live. Pro coming soon.

13 lines (12 loc) 324 B
import React from "react"; interface Props { value: number; label: string; sub: string; accent: string; active: boolean; icon?: any; onClick: () => void; } export default function WorkflowStatCard({ value, label, sub, accent, active, icon: Icon, onClick, }: Props): React.JSX.Element; export {};