Sha256: b99e887fda7a48ec5555eaa2556e28a8971edc18f9e72206a1578a21721b4d4c

Contents?: true

Size: 1.3 KB

Versions: 14

Compression:

Stored size: 1.3 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Badges < Base
        def filled
          svg(
            **attrs,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M16.486 12.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z'
            )
            s.path(
              d:
                'M16.486 3.143l-4.486 2.69l-4.486 -2.69a1 1 0 0 0 -1.514 .857v4a1 1 0 0 0 .486 .857l5 3a1 1 0 0 0 1.028 0l5 -3a1 1 0 0 0 .486 -.857v-4a1 1 0 0 0 -1.514 -.857z'
            )
          end
        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: 'M17 17v-4l-5 3l-5 -3v4l5 3z')
            s.path(d: 'M17 8v-4l-5 3l-5 -3v4l5 3z')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
phlex-icons-tabler-1.6.0 lib/phlex/icons/tabler/badges.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/badges.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/badges.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/badges.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/badges.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/badges.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/badges.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/badges.rb
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/badges.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/badges.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/badges.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/badges.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/badges.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/badges.rb