import { FC } from "react"; import styled from "styled-components"; import { Portal } from "../StandardUserInterface/Portal"; export const ActionBarPortalId = "action-bar-ui-portal"; interface PropsType { /** * Toggles portal visibility. * * This is used for CSS transition animation. */ show: boolean; } /** * A Portal to show ActionBar UI. */ const ActionBarPortal: FC = ({ show }) => { return ; }; const StyledPortal = styled(Portal)<{ show: boolean }>` display: flex; position: absolute; height: 56px; visibility: ${(p) => (p.show ? "visible" : "hidden")}; max-width: 60%; bottom: ${(p) => (p.show ? "130px" : "-56px")}; left: ${(p) => p.theme.workbenchWidth}px; right: 0; margin: auto; /* Animate slide in-out */ transition: all 0.2s; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); `; export default ActionBarPortal;