import { SVGProps } from 'react' import { z } from 'zod' export type IconSvgProps = SVGProps & { size?: number } export const bookmarkSchema = z.object({ id: z.number(), name: z.string(), link: z.string(), description: z.string(), url: z.string().url(), }) export type Bookmark = z.infer