Sha256: 20ee4ce1ab255ba62daa3a1e499e50fc2820fbac87b8dc61a5934a9c433d1c75

Contents?: true

Size: 981 Bytes

Versions: 6

Compression:

Stored size: 981 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class BrandAngular < Base
        def filled
          raise NotImplementedError
        end

        def outline
          svg(
            **attrs,
            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:
                'M5.428 17.245l6.076 3.471a1 1 0 0 0 .992 0l6.076 -3.471a1 1 0 0 0 .495 -.734l1.323 -9.704a1 1 0 0 0 -.658 -1.078l-7.4 -2.612a1 1 0 0 0 -.665 0l-7.399 2.613a1 1 0 0 0 -.658 1.078l1.323 9.704a1 1 0 0 0 .495 .734z'
            )
            s.path(d: 'M9 15l3 -8l3 8')
            s.path(d: 'M10 13h4')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/brand_angular.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/brand_angular.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/brand_angular.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/brand_angular.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/brand_angular.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/brand_angular.rb