import React from "react"; import PropTypes from "prop-types"; import { Button } from "asc-web-components"; import styled, { css } from "styled-components"; const StyledContainer = styled.div` border-top: 1px solid #eceef1; padding: 16px; height: 69px; ${props => !props.isVisible && css` display: none; `} `; const ADSelectorFooter = props => { const { selectButtonLabel, isDisabled, onClick, isVisible, className } = props; return (