Sha256: 8d9faadaa879dde5f2c3f136b563d695733309590787e9a10193c9f7537c67cd

Contents?: true

Size: 1.56 KB

Versions: 12

Compression:

Stored size: 1.56 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class ShieldCheck < 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:
                'M11.998 2l.118 .007l.059 .008l.061 .013l.111 .034a.993 .993 0 0 1 .217 .112l.104 .082l.255 .218a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717a13 13 0 0 1 -9.208 16.25a1 1 0 0 1 -.502 0a13 13 0 0 1 -9.209 -16.25a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.531 -2.527l.263 -.225l.096 -.075a.993 .993 0 0 1 .217 -.112l.112 -.034a.97 .97 0 0 1 .119 -.021l.115 -.007zm3.71 7.293a1 1 0 0 0 -1.415 0l-3.293 3.292l-1.293 -1.292l-.094 -.083a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -.083l4 -4l.083 -.094a1 1 0 0 0 -.083 -1.32z'
            )
          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:
                'M11.46 20.846a12 12 0 0 1 -7.96 -14.846a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 -.09 7.06'
            )
            s.path(d: 'M15 19l2 2l4 -4')
          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/shield_check.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/shield_check.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/shield_check.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/shield_check.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/shield_check.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/shield_check.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/shield_check.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/shield_check.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/shield_check.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/shield_check.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/shield_check.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/shield_check.rb