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