"use client"; import { memo } from "react"; import { CreateFlowFooterView } from "./CreateFlowFooter.view"; import type { CreateFlowFooterProps } from "./CreateFlowFooter.types"; /** * Figma: "Utility / CreateFlowFooter" (TODO(figma)). 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 = "", }) => { return ( ); }, ); CreateFlowFooterContainer.displayName = "CreateFlowFooter"; export default CreateFlowFooterContainer;