import styled from '@emotion/styled'; import { Card } from 'web-check-live/components/Form/Card'; import Row from 'web-check-live/components/Form/Row'; const Note = styled.small` opacity: 0.5; display: block; margin-top: 0.5rem; `; const FirewallCard = (props: { data: any, title: string, actionButtons: any }): JSX.Element => { const data = props.data; return ( { data.waf && } { !data.hasWaf && ( *The domain may be protected with a proprietary or custom WAF which we were unable to identify automatically ) } ); } export default FirewallCard;