// @flow import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; import { bdlBoxBlue } from '../../styles/variables'; type Props = { className?: string, color?: string, height?: number, /** A text-only string describing the icon if it is not purely decorative for accessibility */ title?: string, width?: number, }; const IconTask = ({ className = '', color = bdlBoxBlue, height = 16, title, width = 18 }: Props) => ( ); export default IconTask;