mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-23 17:28:23 +00:00
7 lines
163 B
TypeScript
7 lines
163 B
TypeScript
import * as z from "zod"
|
|
|
|
export const ogImageSchema = z.object({
|
|
heading: z.string(),
|
|
type: z.string(),
|
|
mode: z.enum(["light", "dark"]).default("dark"),
|
|
})
|