// @flow import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; type Props = { className?: string, color?: string, height?: number, title?: string | React.Element, width?: number, }; const IconBox3DCenter = ({ className = '', height = 18, color = '#444', title, width = 18 }: Props) => ( ); export default IconBox3DCenter;