Sha256: 02691dad8a8ca6c524bb2d4dc5291011f0be6dc7a89dc823446a73d0f9b47032

Contents?: true

Size: 1.63 KB

Versions: 12

Compression:

Stored size: 1.63 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class HelpTriangle < 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:
                'M12 1.67c.955 0 1.845 .467 2.39 1.247l.105 .16l8.114 13.548a2.914 2.914 0 0 1 -2.307 4.363l-.195 .008h-16.225a2.914 2.914 0 0 1 -2.582 -4.2l.099 -.185l8.11 -13.538a2.914 2.914 0 0 1 2.491 -1.403zm0 13.33a1 1 0 0 0 -.993 .883l-.007 .117l.007 .127a1 1 0 0 0 1.986 0l.007 -.117l-.007 -.127a1 1 0 0 0 -.993 -.883zm1.368 -6.673a2.98 2.98 0 0 0 -3.631 .728a1 1 0 0 0 1.44 1.383l.171 -.18a.98 .98 0 0 1 1.11 -.15a1 1 0 0 1 -.34 1.886l-.232 .012a1 1 0 0 0 .111 1.994a3 3 0 0 0 1.371 -5.673z'
            )
          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 16v.01')
            s.path(
              d:
                'M10.363 3.591l-8.106 13.534a1.914 1.914 0 0 0 1.636 2.871h16.214a1.914 1.914 0 0 0 1.636 -2.87l-8.106 -13.536a1.914 1.914 0 0 0 -3.274 0z'
            )
            s.path(d: 'M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483')
          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/help_triangle.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/help_triangle.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/help_triangle.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/help_triangle.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/help_triangle.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/help_triangle.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/help_triangle.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/help_triangle.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/help_triangle.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/help_triangle.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/help_triangle.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/help_triangle.rb