import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; import { white } from '../../styles/variables'; import { Icon } from '../iconTypes'; interface IconBell2Props extends Icon { /** A boolean indicating whether this icon is filled or just outlined */ isFilled?: boolean; } const IconBell2 = ({ className = '', color = white, isFilled = false, height = 18, title, width = 18, }: IconBell2Props) => ( ); export default IconBell2;