Sha256: a542d2d064f589b44007bd4308f0555e3a46d0be91ab3ba4f7c17d0983e34946

Contents?: true

Size: 1.31 KB

Versions: 12

Compression:

Stored size: 1.31 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Badges < 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:
                '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(
            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: '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

12 entries across 12 versions & 2 rubygems

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