Sha256: 257d393fe5be0f74f4709f1acde9353e1cfbcd7d76dbd00aebcedc0aed5c214c

Contents?: true

Size: 832 Bytes

Versions: 12

Compression:

Stored size: 832 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class FlagExclamation < Base
        def filled
          raise NotImplementedError
        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:
                'M15.035 15.408a4.98 4.98 0 0 1 -3.035 -1.408a5 5 0 0 0 -7 0v-9a5 5 0 0 1 7 0a5 5 0 0 0 7 0v7'
            )
            s.path(d: 'M5 21v-7')
            s.path(d: 'M19 16v3')
            s.path(d: 'M19 22v.01')
          end
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

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