/** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * The icon for the feature */ export type Icon = string; /** * The title of the feature */ export type Title = string; /** * The description of the feature */ export type Text = string; /** * The CTA url */ export type CallToActionUrl = string; /** * The text label displayed on the link */ export type LinkLabel = string; /** * Icon for the link style of the cta */ export type Icon1 = string; /** * Activate/disable the CTAs */ export type CallToActionToggle = boolean; /** * Partial Component used to display a feature */ export interface FeatureProps { icon?: Icon; title: Title; text?: Text; style?: "intext" | "stack" | "centered" | "besideLarge" | "besideSmall"; cta?: CallToAction; } /** * The call to action */ export interface CallToAction { url?: CallToActionUrl; label?: LinkLabel; icon?: Icon1; toggle?: CallToActionToggle; /** * Choose the style of the CTA */ style?: "button" | "link" | "intext"; }