# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Lucide class Award < Base def view_template svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'none', stroke: 'currentColor', stroke_width: '2', stroke_linecap: 'round', stroke_linejoin: 'round' ) do |s| s.path( d: 'm15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526' ) s.circle(cx: '12', cy: '8', r: '6') end end end end end end # rubocop:enable Layout/LineLength