import React from 'react'

const NewNotification = (props: React.SVGAttributes<SVGElement>) => {
  return (
    <svg width="12" height="12" viewBox="0 0 12 12" fill="none" {...props}>
      <circle cx="6" cy="6" r="6" fill="#FF2D55" />
    </svg>
  )
}

export default NewNotification
