/// NewExternalLinkComponent
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct NewExternalLinkComponent {
pub href: String,
/// lucide icon name for guide, see https://lucide.dev/icons/ for complete list of options
#[serde(skip_serializing_if = "Option::is_none")]
pub icon: Option<String>,
pub label: String,
/// Constant denoting sidebar component as a external link
#[serde(rename = "type")]
pub type_: crate::models::ComponentTypeExternalLinkEnum,
}