// @flow import * as React from 'react'; import { bdlBoxBlue, white } from '../../styles/variables'; import AccessibleSVG from '../accessible-svg'; type Props = { className?: string, height?: number, title?: string | React.Element, width?: number, }; const IconBoxSquare = ({ className = '', height = 72, title, width = 72 }: Props) => ( ); export default IconBoxSquare;