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