Sha256: 65bfed4b1a8aed3c74c796c1706910dafcfded7f4ee3c278b7af8e05823b9b7d

Contents?: true

Size: 852 Bytes

Versions: 12

Compression:

Stored size: 852 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Alpha < 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:
                'M18.1 6c-1.1 2.913 -1.9 4.913 -2.4 6c-1.879 4.088 -3.713 6 -6 6c-2.4 0 -4.8 -2.4 -4.8 -6s2.4 -6 4.8 -6c2.267 0 4.135 1.986 6 6c.512 1.102 1.312 3.102 2.4 6'
            )
          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/alpha.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/alpha.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/alpha.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/alpha.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/alpha.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/alpha.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/alpha.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/alpha.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/alpha.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/alpha.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/alpha.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/alpha.rb