1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import React from 'react' const SmallAlert = (props) => ( <svg width='18' height='18' viewBox='0 0 18 18' {...props}> <g fill='#E8B007' fillRule='evenodd'> <path d='M9 17c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8M9 0C4.038 0 0 4.038 0 9c0 4.963 4.038 9 9 9 4.963 0 9-4.037 9-9 0-4.962-4.037-9-9-9' /> <rect width='2' height='7' x='8' y='4' rx='1' /> <rect width='2' height='2' x='8' y='12' rx='1' /> </g> </svg> ) export default SmallAlert |