mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-23 01:08:28 +00:00
5 lines
105 B
TypeScript
5 lines
105 B
TypeScript
import * as z from "zod"
|
|
|
|
export const userNameSchema = z.object({
|
|
name: z.string().min(3).max(32),
|
|
})
|