Variable widgetSeparatorContentSchemaConst
widgetSeparatorContentSchema: ZodObject<
{
align: ZodOptional<
ZodEnum<
[
"top-left",
"top-center",
"top-right",
"center-left",
"center",
"center-right",
"bottom-left",
"bottom-center",
"bottom-right",
],
>,
>;
color: ZodOptional<ZodString>;
orientation: ZodOptional<ZodEnum<["horizontal", "vertical"]>>;
size: ZodOptional<ZodNumber>;
},
"strip",
ZodTypeAny,
{
align?: | "center"
| "top-left"
| "top-right"
| "bottom-left"
| "bottom-right"
| "top-center"
| "center-left"
| "center-right"
| "bottom-center";
color?: string;
orientation?: "vertical"
| "horizontal";
size?: number;
},
{
align?: | "center"
| "top-left"
| "top-right"
| "bottom-left"
| "bottom-right"
| "top-center"
| "center-left"
| "center-right"
| "bottom-center";
color?: string;
orientation?: "vertical"
| "horizontal";
size?: number;
},
> = ...