Sha256: bc178cb102bd97c1969237c87dc66741e2128434a11850899d87b117255c1ed9

Contents?: true

Size: 1.92 KB

Versions: 12

Compression:

Stored size: 1.92 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Award < Base
        def filled
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M19.496 13.983l1.966 3.406a1.001 1.001 0 0 1 -.705 1.488l-.113 .011l-.112 -.001l-2.933 -.19l-1.303 2.636a1.001 1.001 0 0 1 -1.608 .26l-.082 -.094l-.072 -.11l-1.968 -3.407a8.994 8.994 0 0 0 6.93 -3.999z'
            )
            s.path(
              d:
                'M11.43 17.982l-1.966 3.408a1.001 1.001 0 0 1 -1.622 .157l-.076 -.1l-.064 -.114l-1.304 -2.635l-2.931 .19a1.001 1.001 0 0 1 -1.022 -1.29l.04 -.107l.05 -.1l1.968 -3.409a8.994 8.994 0 0 0 6.927 4.001z'
            )
            s.path(
              d:
                'M12 2l.24 .004a7 7 0 0 1 6.76 6.996l-.003 .193l-.007 .192l-.018 .245l-.026 .242l-.024 .178a6.985 6.985 0 0 1 -.317 1.268l-.116 .308l-.153 .348a7.001 7.001 0 0 1 -12.688 -.028l-.13 -.297l-.052 -.133l-.08 -.217l-.095 -.294a6.96 6.96 0 0 1 -.093 -.344l-.06 -.271l-.049 -.271l-.02 -.139l-.039 -.323l-.024 -.365l-.006 -.292a7 7 0 0 1 6.76 -6.996l.24 -.004z'
            )
          end
        end

        def outline
          svg(
            class: classes,
            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: 'M12 9m-6 0a6 6 0 1 0 12 0a6 6 0 1 0 -12 0')
            s.path(d: 'M12 15l3.4 5.89l1.598 -3.233l3.598 .232l-3.4 -5.889')
            s.path(d: 'M6.802 12l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
phlex-icons-tabler-0.17.0 lib/phlex/icons/tabler/award.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/award.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/award.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/award.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/award.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/award.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/award.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/award.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/award.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/award.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/award.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/award.rb