"use client"; import { memo } from "react"; import { useTranslation } from "../../../contexts/MessagesContext"; import { CreateFlowFooterView } from "./CreateFlowFooter.view"; import type { CreateFlowFooterProps } from "./CreateFlowFooter.types"; /** * Figma: "Utility / CreateFlowFooter". Sticky footer for the * create flow with a back action, optional secondary button, and progress bar. */ const CreateFlowFooterContainer = memo( ({ secondButton, progressBar = true, proportionBarProgress, proportionBarVariant, onBackClick, className = "", footerAriaLabel, }) => { const t = useTranslation("controlsChrome"); return ( ); }, ); CreateFlowFooterContainer.displayName = "CreateFlowFooter"; export default CreateFlowFooterContainer;