We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c3fdff commit 98a3397Copy full SHA for 98a3397
content.config.ts
@@ -10,7 +10,7 @@ const createBaseSchema = () => z.object({
10
const createLinkSchema = () => z.object({
11
label: z.string().nonempty(),
12
to: z.string().nonempty(),
13
- icon: z.string().optional(),
+ icon: z.string().optional().editor({ input: 'icon' }),
14
size: createEnum(['xs', 'sm', 'md', 'lg', 'xl']),
15
trailing: z.boolean().optional(),
16
target: createEnum(['_blank', '_self']),
0 commit comments