Sha256: f7d402bbe8a88317f8db39058ddbcf912cb18cab9009a00bdde86522cf0a9dc8

Contents?: true

Size: 1.44 KB

Versions: 12

Compression:

Stored size: 1.44 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class ShieldCheckered < 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.013 12v9.754a13 13 0 0 1 -8.733 -9.754h8.734zm9.284 3.794a13 13 0 0 1 -7.283 5.951l-.001 -9.745h8.708a12.96 12.96 0 0 1 -1.424 3.794zm-9.283 -13.268l-.001 7.474h-8.986c-.068 -1.432 .101 -2.88 .514 -4.282a1 1 0 0 1 1.005 -.717a11 11 0 0 0 7.192 -2.256l.276 -.219zm1.999 7.474v-7.453l-.09 -.073a11 11 0 0 0 7.189 2.537l.342 -.01a1 1 0 0 1 1.005 .717c.413 1.403 .582 2.85 .514 4.282h-8.96z'
            )
          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 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3'
            )
            s.path(d: 'M12 3v18')
            s.path(d: 'M3.5 12h17')
          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_checkered.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/shield_checkered.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/shield_checkered.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/shield_checkered.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/shield_checkered.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/shield_checkered.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/shield_checkered.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/shield_checkered.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/shield_checkered.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/shield_checkered.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/shield_checkered.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/shield_checkered.rb