"use client" import { Button, clx } from "@medusajs/ui" import { ChevronRightMini } from "@medusajs/icons" import { LayoutComponentDefinition, LayoutContext, } from "@vibentec/component-map" export function DefaultCtaBanner({ nodes, context, }: { nodes: LayoutComponentDefinition context: LayoutContext }) { const props = nodes.config ?? {} return (
{props.tagText && (
{props.tagText}
)} {props.titleText && (

{props.titleText}

)} {props.descriptionText && (

{props.descriptionText}

)}
) }