{svg, g, path, ellipse} = require 'react-dom-factories'

module.exports = (props) ->
  svg {
    width: '26'
    height: '22'
    viewBox: '0 0 26 22'
    xmlns: 'http://www.w3.org/2000/svg'
  }, g {
      transform: 'translate(-1 -1)'
      fill: 'none'
    }, [
      path {
        key: 'path1'
        d: 'M11.116 4.532c1.593-2.503 4.176-2.502 5.768 0l8.232 12.936C26.71 19.97 25.6 22 22.634 22H5.366c-2.964 0-4.074-2.03-2.482-4.532l8.232-12.936z'
        stroke: '#F7A138'
        strokeWidth: '1.788'
        fill: '#fff'
        strokeLinecap: 'round'
      }
      path {
        key: 'path2'
        d: 'M14 7.615v6.77'
        stroke: '#F7A138'
        strokeWidth: '1.788'
        strokeLinecap: 'square'
      }
      ellipse {
        key: 'ellipse'
        fill: '#F7A138'
        cx: '14'
        cy: '17.769'
        rx: '1.75'
        ry: '1.692'
      }
    ]