import ProportionBar from "../../progress/ProportionBar"; import Button from "../../buttons/Button"; import type { CreateFlowFooterProps } from "./CreateFlowFooter.types"; import { CREATE_FLOW_FOOTER_SCRIM_CLASS, CREATE_FLOW_PAGE_GUTTER_CLASS, CREATE_FLOW_TWO_COLUMN_MAX_WIDTH_CLASS, } from "../../../(app)/create/components/createFlowLayoutTokens"; export function CreateFlowFooterView({ secondButton, progressBar = true, proportionBarProgress = "1-0", proportionBarVariant: proportionBarVariantProp, onBackClick, className = "", contentMaxClass = CREATE_FLOW_TWO_COLUMN_MAX_WIDTH_CLASS, footerAriaLabel, }: CreateFlowFooterProps) { const proportionBarVariant = proportionBarVariantProp ?? "default"; return ( ); }