// @flow import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; import { bdlGray10, bdlGray50, white } from '../../styles/variables'; type Props = { className?: string, height?: number, primaryColor?: string, secondaryColor?: string, /** A text-only string describing the icon if it's not purely decorative for accessibility */ title?: string | React.Element, width?: number, }; const SecurityBlockedState = ({ className = '', primaryColor = bdlGray10, height = 167, secondaryColor = bdlGray50, title, width = 130, }: Props) => ( ); export default SecurityBlockedState;