// @flow import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; import { white } from '../../styles/variables'; type Props = { className?: string, color?: string, /** Should this icon be filled, or just an outline */ height?: number, isFilled?: boolean, /** A text-only string describing the icon if it's not purely decorative for accessibility */ title?: string | React.Element, width?: number, }; const IconBell2 = ({ className = '', color = white, isFilled = false, height = 18, title, width = 18 }: Props) => ( ); export default IconBell2;