// @flow import * as React from 'react'; import classNames from 'classnames'; import AccessibleSVG from '../accessible-svg'; import type { Icon } from '../flowTypes'; import { bdlGray50 } from '../../styles/variables'; const IconClock = ({ className = '', color = bdlGray50, height = 16, title, width = 16 }: Icon) => ( ); export default IconClock;