// @flow import * as React from 'react'; import classNames from 'classnames'; import AccessibleSVG from '../../../icons/accessible-svg'; type Props = { className?: string, color?: string, selected?: boolean, title?: string | React.Element, width?: number, }; const iconName = 'icon-automations'; const IconAutomations = ({ className = '', width = 14, color = '#c4c4c4', selected = false }: Props) => ( ); export default IconAutomations;