@cognigy/rest-api-client
Version:
Cognigy REST-Client
81 lines • 1.31 kB
JavaScript
export const getFontSizeFieldOptions = [
{
label: "xs",
value: "text-xs",
},
{
label: "sm",
value: "text-sm",
},
{
label: "base",
value: "text-base",
},
{
label: "lg",
value: "text-lg",
},
{
label: "xl",
value: "text-xl",
},
{
label: "2xl",
value: "text-2xl",
},
{
label: "3xl",
value: "text-3xl",
},
{
label: "4xl",
value: "text-4xl",
},
{
label: "5xl",
value: "text-5xl",
},
{
label: "6xl",
value: "text-6xl",
},
{
label: "7xl",
value: "text-7xl",
},
{
label: "8xl",
value: "text-8xl",
},
{
label: "9xl",
value: "text-9xl",
},
];
export const getImageSizeFieldOptions = [
{
label: "xs",
value: "h-16 w-16",
},
{
label: "sm",
value: "h-20 w-20",
},
{
label: "base",
value: "h-24 w-24",
},
{
label: "lg",
value: "h-28 w-28",
},
{
label: "xl",
value: "h-32 w-32",
},
{
label: "2xl",
value: "h-36 w-36",
},
];
//# sourceMappingURL=getFontSizeFieldOptions.js.map