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