import styled from 'styled-components'; import React from 'react'; const Wrapper = styled.div` position: relative; `; export const BellIcon = ({ width = 24, height = 24, color = '#fff', notificationCount = 0, }) => ( {Boolean(notificationCount) && ( )} );